Uses of Interface
org.opensaml.security.credential.Credential
-
Packages that use Credential Package Description org.opensaml.security.credential Interfaces and classes related to credentials and ways to represent them.org.opensaml.security.crypto General cryptographic functionality.org.opensaml.security.messaging Messaging-related security classes.org.opensaml.security.x509 X.509-based credential and trust classes. -
-
Uses of Credential in org.opensaml.security.credential
Subinterfaces of Credential in org.opensaml.security.credential Modifier and Type Interface Description interfaceMutableCredentialA specialization ofCredentialwhich supports mutation of its properties.Classes in org.opensaml.security.credential that implement Credential Modifier and Type Class Description classAbstractCredentialBase class forCredentialimplementations.classBasicCredentialA basic implementation ofCredential.Methods in org.opensaml.security.credential that return types with arguments of type Credential Modifier and Type Method Description Class<? extends Credential>BasicCredential. getCredentialType()Get the primary type of the credential instance.Class<? extends Credential>Credential. getCredentialType()Get the primary type of the credential instance.Methods in org.opensaml.security.credential with parameters of type Credential Modifier and Type Method Description static KeyCredentialSupport. extractDecryptionKey(Credential credential)Extract the decryption key from the credential.static KeyCredentialSupport. extractEncryptionKey(Credential credential)Extract the encryption key from the credential.static KeyCredentialSupport. extractSigningKey(Credential credential)Extract the signing key from the credential.static KeyCredentialSupport. extractVerificationKey(Credential credential)Extract the verification key from the credential. -
Uses of Credential in org.opensaml.security.crypto
Methods in org.opensaml.security.crypto with parameters of type Credential Modifier and Type Method Description static byte[]SigningUtil. sign(Credential signingCredential, String jcaAlgorithmID, boolean isMAC, byte[] input)Compute the signature or MAC value over the supplied input.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. -
Uses of Credential in org.opensaml.security.messaging
Classes in org.opensaml.security.messaging that implement Credential Modifier and Type Class Description classServletRequestX509CredentialAdapterAn adapter that exposes the X.509 certificates contained in the servlet request attribute.Methods in org.opensaml.security.messaging that return types with arguments of type Credential Modifier and Type Method Description Class<? extends Credential>ServletRequestX509CredentialAdapter. getCredentialType()Get the primary type of the credential instance. -
Uses of Credential in org.opensaml.security.x509
Subinterfaces of Credential in org.opensaml.security.x509 Modifier and Type Interface Description interfaceX509CredentialAn entity credential based on key material and other information (e.g.Classes in org.opensaml.security.x509 that implement Credential Modifier and Type Class Description classBasicX509CredentialA basic implementation ofX509Credential.Methods in org.opensaml.security.x509 that return types with arguments of type Credential Modifier and Type Method Description Class<? extends Credential>BasicX509Credential. getCredentialType()Get the primary type of the credential instance.
-