diff options
Diffstat (limited to 'scripts/pull-and-verify.sh')
-rwxr-xr-x | scripts/pull-and-verify.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/pull-and-verify.sh b/scripts/pull-and-verify.sh index 8798259a..df0871a9 100755 --- a/scripts/pull-and-verify.sh +++ b/scripts/pull-and-verify.sh @@ -17,7 +17,8 @@ if [ $? -ne 0 ]; then exit 1 fi if [ "x$CERT" != "x" ]; then - samlsign -c $CERT -f $TMPF + xmlsec1 --verify --pubkey-cert-pem $CERT --id-attr:ID urn:oasis:names:tc:SAML:2.0:metadata:EntitiesDescriptor $TMPF + #samlsign -c $CERT -f $TMPF if [ $? -ne 0 ]; then echo "Unable to verify $URL with $CERT: $?" exit 1 |