Searched refs:privateKeys (Results 1 - 24 of 24) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DEncryptedAssertion.java49 * @param privateKeys Private keys of the recipient used to decrypt the secret key.
53 public Assertion decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception; argument
H A DEncryptedAttribute.java51 * @param privateKeys Private keys of the recipient used to decrypt the secret key.
55 public Attribute decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception; argument
H A DEncryptedID.java48 * @param privateKeys Private keys of the recipient used to decrypt the secret key
52 public NameID decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DNewEncryptedID.java52 * @param privateKeys Private keys of the recipient used to decrypt the secret key.
56 NewID decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception; argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/
H A DEncryptedAssertion.java49 * @param privateKeys Private keys of the recipient used to decrypt the secret key.
53 public Assertion decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception; argument
H A DEncryptedAttribute.java51 * @param privateKeys Private keys of the recipient used to decrypt the secret key.
55 public Attribute decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception; argument
H A DEncryptedID.java48 * @param privateKeys Private keys of the recipient used to decrypt the secret key
52 public NameID decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlenc/
H A DEncProvider.java119 * @param privateKeys Private keys used to decrypt the secret key.
124 public SecretKey getSecretKey(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception; argument
130 * @param privateKeys Private keys used to decrypt the secret key.
138 public Element decrypt(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception; argument
H A DFMEncProvider.java378 public SecretKey getSecretKey(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception { argument
386 privateKeys == null) {
480 return (SecretKey) getEncryptionKey(keyCipher, privateKeys, encryptedKey,
488 public Element decrypt(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception { argument
494 if (StringUtils.isEmpty(xmlString) || CollectionUtils.isEmpty(privateKeys)) {
592 Key encryptionKey = getEncryptionKey(keyCipher, privateKeys, encryptedKey,
684 private Key getEncryptionKey(XMLCipher cipher, Set<PrivateKey> privateKeys, EncryptedKey encryptedKey, argument
688 for (Key privateKey : privateKeys) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/xmlenc/
H A DEncProvider.java119 * @param privateKeys Private keys used to decrypt the secret key.
124 public SecretKey getSecretKey(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception; argument
130 * @param privateKeys Private keys used to decrypt the secret key.
138 public Element decrypt(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception; argument
H A DFMEncProvider.java391 public SecretKey getSecretKey(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception { argument
399 privateKeys == null) {
493 return (SecretKey) getEncryptionKey(keyCipher, privateKeys, encryptedKey,
501 public Element decrypt(String xmlString, Set<PrivateKey> privateKeys) throws SAML2Exception { argument
511 if (CollectionUtils.isEmpty(privateKeys)) {
607 Key encryptionKey = getEncryptionKey(keyCipher, privateKeys, encryptedKey,
698 private Key getEncryptionKey(XMLCipher cipher, Set<PrivateKey> privateKeys, EncryptedKey encryptedKey, argument
704 for (Key privateKey : privateKeys) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DNewEncryptedID.java56 * @param privateKeys Private keys of the recipient used to decrypt the secret key.
60 NewID decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DEncryptedAssertionImpl.java111 public Assertion decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception { argument
112 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
H A DEncryptedIDImpl.java116 public NameID decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception { argument
117 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
H A DEncryptedAttributeImpl.java115 public Attribute decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception { argument
116 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DNewEncryptedIDImpl.java121 public NewID decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception { argument
122 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DEncryptedAssertionImpl.java111 public Assertion decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception { argument
112 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
H A DEncryptedIDImpl.java116 public NameID decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception { argument
117 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
H A DEncryptedAttributeImpl.java115 public Attribute decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception { argument
116 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DNewEncryptedIDImpl.java121 public NewID decrypt(Set<PrivateKey> privateKeys) throws SAML2Exception { argument
122 Element el = EncManager.getEncInstance().decrypt(xmlString, privateKeys);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DAuthnQueryUtil.java529 Set<PrivateKey> privateKeys = KeyUtil.getDecryptionKeys(realm, spEntityID, SAML2Constants.SP_ROLE);
531 Assertion assertion = eAssertion.decrypt(privateKeys);
H A DSPACSUtils.java1864 * @param privateKeys Private keys used to decrypt those encrypted attributes.
1868 Set<PrivateKey> privateKeys) {
1892 attrList.add((encAttr).decrypt(privateKeys));
1867 getSAMLAttributes(Assertion assertion, boolean needAttributeEncrypted, Set<PrivateKey> privateKeys) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DAuthnQueryUtil.java531 Set<PrivateKey> privateKeys = KeyUtil.getDecryptionKeys(realm, spEntityID, SAML2Constants.SP_ROLE);
533 Assertion assertion = eAssertion.decrypt(privateKeys);
H A DSPACSUtils.java1837 * @param privateKeys Private keys used to decrypt those encrypted attributes.
1841 Set<PrivateKey> privateKeys) {
1865 attrList.add((encAttr).decrypt(privateKeys));
1840 getSAMLAttributes(Assertion assertion, boolean needAttributeEncrypted, Set<PrivateKey> privateKeys) argument

Completed in 115 milliseconds