Uses of Interface
org.opensaml.xmlsec.signature.KeyInfo
-
Packages that use KeyInfo Package Description org.opensaml.xmlsec.encryption XMLObject interfaces and helper classes for representing encrypted content and encrypting/decrypting content.org.opensaml.xmlsec.encryption.support Functional support for XML Encryption.org.opensaml.xmlsec.keyinfo Classes in support of processing XML Signature KeyInfo material.org.opensaml.xmlsec.signature XMLObject interfaces and helper classes for representing digitally signed content and signing/validating content. -
-
Uses of KeyInfo in org.opensaml.xmlsec.encryption
Subinterfaces of KeyInfo in org.opensaml.xmlsec.encryption Modifier and Type Interface Description interface
OriginatorKeyInfo
XMLObject representing XML Encryption, version 20021210, OriginatorKeyInfo element.interface
RecipientKeyInfo
XMLObject representing XML Encryption, version 20021210, RecipientKeyInfo element.Methods in org.opensaml.xmlsec.encryption that return KeyInfo Modifier and Type Method Description KeyInfo
EncryptedType. getKeyInfo()
Gets the KeyInfo child element.Methods in org.opensaml.xmlsec.encryption with parameters of type KeyInfo Modifier and Type Method Description void
EncryptedType. setKeyInfo(KeyInfo newKeyInfo)
Sets the KeyInfo child element. -
Uses of KeyInfo in org.opensaml.xmlsec.encryption.support
Fields in org.opensaml.xmlsec.encryption.support with type parameters of type KeyInfo Modifier and Type Field Description private XMLSignatureBuilder<KeyInfo>
Encrypter. keyInfoBuilder
Builder instance for building KeyInfo objects.Methods in org.opensaml.xmlsec.encryption.support that return KeyInfo Modifier and Type Method Description protected KeyInfo
SimpleKeyInfoReferenceEncryptedKeyResolver. dereferenceURI(KeyInfoReference ref)
Dereference the URI attribute of the specified retrieval method into a KeyInfo.Methods in org.opensaml.xmlsec.encryption.support with parameters of type KeyInfo Modifier and Type Method Description protected Iterable<EncryptedKey>
SimpleKeyInfoReferenceEncryptedKeyResolver. resolveKeyInfo(KeyInfo keyInfo, int limit)
Turn a KeyInfo into an EncryptedKey collection. -
Uses of KeyInfo in org.opensaml.xmlsec.keyinfo
Fields in org.opensaml.xmlsec.keyinfo declared as KeyInfo Modifier and Type Field Description private KeyInfo
KeyInfoCriterion. keyInfo
The KeyInfo which serves as the source for credential criteria.Methods in org.opensaml.xmlsec.keyinfo that return KeyInfo Modifier and Type Method Description KeyInfo
KeyInfoGenerator. generate(org.opensaml.security.credential.Credential credential)
Generate a new KeyInfo object based on keying material and other information within a credential.KeyInfo
KeyInfoCriterion. getKeyInfo()
Gets the KeyInfo which is the source of credential criteria.Methods in org.opensaml.xmlsec.keyinfo with parameters of type KeyInfo Modifier and Type Method Description static void
KeyInfoSupport. addCertificate(KeyInfo keyInfo, X509Certificate cert)
Converts a native JavaX509Certificate
into the corresponding XMLObject and stores it in aKeyInfo
in the firstX509Data
element.static void
KeyInfoSupport. addCRL(KeyInfo keyInfo, X509CRL crl)
static void
KeyInfoSupport. addDEREncodedPublicKey(KeyInfo keyInfo, PublicKey pk)
Converts a Java public key into the corresponding XMLObject and stores it in aKeyInfo
in a newDEREncodedKeyValue
element.static void
KeyInfoSupport. addKeyName(KeyInfo keyInfo, String keyNameValue)
Add a newKeyName
value to a KeyInfo.static void
KeyInfoSupport. addPublicKey(KeyInfo keyInfo, PublicKey pk)
static List<X509Certificate>
KeyInfoSupport. getCertificates(KeyInfo keyInfo)
Get a list of the JavaX509Certificate
within the given KeyInfo.static List<X509CRL>
KeyInfoSupport. getCRLs(KeyInfo keyInfo)
static List<String>
KeyInfoSupport. getKeyNames(KeyInfo keyInfo)
Get the set of key names inside the specifiedKeyInfo
as a list of strings.static List<PublicKey>
KeyInfoSupport. getPublicKeys(KeyInfo keyInfo)
void
KeyInfoCriterion. setKeyInfo(KeyInfo newKeyInfo)
Sets the KeyInfo which is the source of credential criteria.Constructors in org.opensaml.xmlsec.keyinfo with parameters of type KeyInfo Constructor Description KeyInfoCriterion(KeyInfo newKeyInfo)
Constructor. -
Uses of KeyInfo in org.opensaml.xmlsec.signature
Methods in org.opensaml.xmlsec.signature that return KeyInfo Modifier and Type Method Description KeyInfo
Signature. getKeyInfo()
Gets the key info added to this signature.Methods in org.opensaml.xmlsec.signature with parameters of type KeyInfo Modifier and Type Method Description void
Signature. setKeyInfo(KeyInfo newKeyInfo)
Sets the key info added to this signature.
-