Searched refs:publicKey (Results 1 - 23 of 23) sorted by relevance

/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/saml/xmlsig/
H A DKeyProvider.java123 * @param publicKey Certificate public key
128 java.security.PublicKey publicKey);
127 getCertificate( java.security.PublicKey publicKey) argument
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/saml/xmlsig/
H A DKeyProvider.java136 * @param publicKey Certificate public key
141 java.security.PublicKey publicKey);
140 getCertificate( java.security.PublicKey publicKey) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/xmlsig/
H A DJKSKeyProvider.java211 * @param publicKey Certificate public key
215 public Certificate getCertificate (java.security.PublicKey publicKey) { argument
216 return keyProvider.getCertificate(publicKey);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/xmlsig/
H A DJKSKeyProvider.java217 * @param publicKey Certificate public key
221 public Certificate getCertificate (java.security.PublicKey publicKey) { argument
222 return keyProvider.getCertificate(publicKey);
/forgerock/openam-v13/openam-uma/src/test/java/org/forgerock/openam/uma/
H A DIdTokenClaimGathererTest.java93 PublicKey publicKey = mock(PublicKey.class);
94 KeyPair keyPair = new KeyPair(publicKey, null);
102 PublicKey publicKey = mock(PublicKey.class);
103 KeyPair keyPair = new KeyPair(publicKey, null);
/forgerock/openam/openam-uma/src/test/java/org/forgerock/openam/uma/
H A DIdTokenClaimGathererTest.java92 PublicKey publicKey = mock(PublicKey.class);
93 KeyPair keyPair = new KeyPair(publicKey, null);
101 PublicKey publicKey = mock(PublicKey.class);
102 KeyPair keyPair = new KeyPair(publicKey, null);
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DAMKeyProvider.java339 PublicKey publicKey = getPublicKey(certAlias);
342 if (publicKey != null && privateKey != null) {
343 return new KeyPair(publicKey, privateKey);
469 * @param publicKey Certificate public key
474 java.security.PublicKey publicKey) {
475 String key = Base64.encode(publicKey.getEncoded());
473 getCertificate( java.security.PublicKey publicKey) argument
/forgerock/openam-v13/openam-tools/jwt-generator/src/main/java/org/forgerock/openam/jwtgenerator/
H A DJwtGenerator.java58 PublicKey publicKey = keyPair.getPublic();
84 info.set(X509CertInfo.KEY, new CertificateX509Key(publicKey));
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/services/
H A DEncryptedDeviceStorage.java89 final PublicKey publicKey = cert.getPublicKey();
94 return new KeyPair(publicKey, privateKey);
/forgerock/openam/openam-tools/jwt-generator/src/main/java/org/forgerock/openam/jwtgenerator/
H A DJwtGenerator.java58 PublicKey publicKey = keyPair.getPublic();
84 info.set(X509CertInfo.KEY, new CertificateX509Key(publicKey));
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DAMKeyProvider.java369 PublicKey publicKey = getPublicKey(certAlias);
372 if (publicKey != null && privateKey != null) {
373 return new KeyPair(publicKey, privateKey);
519 * @param publicKey Certificate public key
524 java.security.PublicKey publicKey) {
525 String key = Base64.encode(publicKey.getEncoded());
523 getCertificate( java.security.PublicKey publicKey) argument
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/utils/
H A DOpenAMSettingsImpl.java182 final PublicKey publicKey = keystoreManager.getPublicKey(alias);
183 return new KeyPair(publicKey, privateKey);
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/services/
H A DAuthenticatorOathService.java128 final PublicKey publicKey = cert.getPublicKey();
133 return new KeyPair(publicKey, privateKey);
/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/impl/
H A DSecurityResourceProvider.java225 content.put("publicKey", getKeyMap(cert.getPublicKey()));
254 content.put("publicKey", getKeyMap(csr.getPublicKey()));
457 PublicKey publicKey = keyPair.getPublic();
461 PKCS10CertificationRequest cr = new PKCS10CertificationRequest(signatureAlgorithm, subjectName, publicKey,
553 PublicKey publicKey = cert.getPublicKey();
561 Signature verifier = Signature.getInstance(publicKey.getAlgorithm());
562 verifier.initVerify(publicKey);
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/
H A DAuthIdHelperTest.java305 PublicKey publicKey = mock(PublicKey.class);
325 PublicKey publicKey = mock(PublicKey.class);
352 PublicKey publicKey = mock(PublicKey.class);
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/
H A DAuthIdHelperTest.java305 PublicKey publicKey = mock(PublicKey.class);
325 PublicKey publicKey = mock(PublicKey.class);
352 PublicKey publicKey = mock(PublicKey.class);
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/connector/ldap/
H A DLDAPTypeView.js71 this.data.publicKey = "";
105 this.data.publicKey = cert;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DSaml2Utils.cs756 * DSACryptoServiceProvider publicKey = (DSACryptoServiceProvider)cert.PublicKey.Key;
757 * if(!publicKey.VerifyData(dataBuffer, sigBuffer)) {
765 RSACryptoServiceProvider publicKey = (RSACryptoServiceProvider)cert.PublicKey.Key;
766 if (!publicKey.VerifyData(dataBuffer, new SHA1CryptoServiceProvider(), sigBuffer))
/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DSaml2Utils.cs189 * DSACryptoServiceProvider publicKey = (DSACryptoServiceProvider)cert.PublicKey.Key;
190 * if(!publicKey.VerifyData(dataBuffer, sigBuffer)) {
846 RSACryptoServiceProvider publicKey = (RSACryptoServiceProvider)cert.PublicKey.Key;
848 if (!publicKey.VerifyData(dataBuffer, GetRequestedCryptoServiceProvider(sigAlg), sigBuffer))
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusResponseImpl.java75 protected PublicKey publicKey = null; field in class:StatusResponseImpl
H A DRequestAbstractImpl.java79 protected PublicKey publicKey = null; field in class:RequestAbstractImpl
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusResponseImpl.java73 protected PublicKey publicKey = null; field in class:StatusResponseImpl
H A DRequestAbstractImpl.java79 protected PublicKey publicKey = null; field in class:RequestAbstractImpl

Completed in 100 milliseconds