Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Once the certificate file is locally installed, you can use it to verify the signature on the metadata file. For example, you could use the XmlSecTool (or some similar 3rd-party tool) to verify the signature:

Code Block
languagebash
$ MD_PATH=/path/to/InCommon-metadata.xml
$ /usr/bin/curl --silent http://md.incommon.org/InCommon/InCommon-metadata.xml > MD$MD_PATH
$ ./xmlsectool.sh --verifySignature --signatureRequired \
    --certificate $CERT_PATH --inFile $MD_PATH

...