Uses of Class
org.opensaml.security.SecurityException
-
Packages that use SecurityException Package Description org.opensaml.security.crypto General cryptographic functionality.org.opensaml.security.messaging Messaging-related security classes.org.opensaml.security.trust Interfaces and classes used to evaluate the trustworthiness and validity ofCredentials.org.opensaml.security.x509 X.509-based credential and trust classes. -
-
Uses of SecurityException in org.opensaml.security.crypto
Methods in org.opensaml.security.crypto that throw SecurityException Modifier and Type Method Description static booleanKeySupport. matchKeyPair(PublicKey pubKey, PrivateKey privKey)Compare the supplied public and private keys, and determine if they correspond to the same key pair.static byte[]SigningUtil. sign(PrivateKey signingKey, String jcaAlgorithmID, byte[] input)Compute the raw signature value over the supplied input.static byte[]SigningUtil. sign(Credential signingCredential, String jcaAlgorithmID, boolean isMAC, byte[] input)Compute the signature or MAC value over the supplied input.static byte[]SigningUtil. signMAC(Key signingKey, String jcaAlgorithmID, byte[] input)Compute the Message Authentication Code (MAC) value over the supplied input.static booleanSigningUtil. verify(PublicKey verificationKey, String jcaAlgorithmID, byte[] signature, byte[] input)Verify the signature value computed over the supplied input against the supplied signature value.static booleanSigningUtil. verify(Credential verificationCredential, String jcaAlgorithmID, boolean isMAC, byte[] signature, byte[] input)Verify the signature value computed over the supplied input against the supplied signature value.static booleanSigningUtil. verifyMAC(Key verificationKey, String jcaAlgorithmID, byte[] signature, byte[] input)Verify the Message Authentication Code (MAC) value computed over the supplied input against the supplied MAC value. -
Uses of SecurityException in org.opensaml.security.messaging
Constructors in org.opensaml.security.messaging that throw SecurityException Constructor Description ServletRequestX509CredentialAdapter(javax.servlet.ServletRequest request)Constructor. -
Uses of SecurityException in org.opensaml.security.trust
Methods in org.opensaml.security.trust that throw SecurityException Modifier and Type Method Description booleanTrustEngine. validate(TokenType token, CriteriaSet trustBasisCriteria)Validates the token against trusted information obtained in an implementation-specific manner. -
Uses of SecurityException in org.opensaml.security.x509
Methods in org.opensaml.security.x509 that throw SecurityException Modifier and Type Method Description static X509CertificateX509Support. determineEntityCertificate(Collection<X509Certificate> certs, PrivateKey privateKey)Determines the certificate, from the collection, associated with the private key.static byte[]X509Support. getX509Digest(X509Certificate certificate, String jcaAlgorithm)Get the XML Signature-compliant digest of an X.509 certificate.booleanPKIXTrustEvaluator. validate(PKIXValidationInformation validationInfo, X509Credential untrustedCredential)Validate the specified credential against the specified set of trusted validation information.
-