/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/ |
H A D | X509CertificateCallback.java | 43 private X509Certificate certificate; field in class:X509CertificateCallback 62 * @param certificate the X.509 Certificate 66 public X509CertificateCallback(String prompt, X509Certificate certificate) { argument 68 this.certificate = certificate; 81 * Sets the retrieved certificate. 83 * @param certificate the retrieved certificate contents (which may be null) 85 public void setCertificate(X509Certificate certificate) { argument 86 this.certificate [all...] |
/forgerock/opendj-v3/opendj-server/src/main/java/org/forgerock/opendj/server/setup/model/ |
H A D | ModelUtils.java | 58 final Certificate certificate = settings.getCertificate(); 59 switch (certificate.getType()) { 66 appendKeystoreCliOptionsWithPath(cmdLines, "--useJavaKeystore", certificate); 69 appendKeystoreCliOptionsWithPath(cmdLines, "--useJCEKS", certificate); 72 appendKeystoreCliOptionsWithPath(cmdLines, "--usePkcs12keyStore", certificate); 77 appendKeystoreCliOptions(cmdLines, certificate); 87 final Certificate certificate) { 89 cmdLines.add(certificate.getKeyStoreFile().getAbsolutePath()); 90 appendKeystoreCliOptions(cmdLines, certificate); 93 private void appendKeystoreCliOptions(final ArrayList<String> cmdLines, final Certificate certificate) { argument 86 appendKeystoreCliOptionsWithPath(final ArrayList<String> cmdLines, final String cliOption, final Certificate certificate) argument [all...] |
H A D | ListenerSettings.java | 55 private Certificate certificate; field in class:ListenerSettings 75 certificate = null; 386 * Returns the certificate linked to this setup. 388 * @return The certificate linked to this setup. 391 return certificate; 395 * Sets the certificate used in this setup. 397 * @param certificate 398 * The certificate used in this setup. 400 public void setCertificate(Certificate certificate) { argument 401 this.certificate [all...] |
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/ |
H A D | X509CertificateCallback.java | 43 private X509Certificate certificate; field in class:X509CertificateCallback 62 * @param certificate the X.509 Certificate 66 public X509CertificateCallback(String prompt, X509Certificate certificate) { argument 68 this.certificate = certificate; 81 * Sets the retrieved certificate. 83 * @param certificate the retrieved certificate contents (which may be null) 85 public void setCertificate(X509Certificate certificate) { argument 86 this.certificate [all...] |
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/token/validator/disp/ |
H A D | CertificateAuthenticationRequestDispatcher.java | 39 * Class which encapsulates knowledge as to how to post a x509 certificate to the OpenAM REST authN context. It will 40 * consume the Cert module in 'portal' mode, where the Cert module expects to find the end-user certificate in a 65 StringBuilder stringBuilder = new StringBuilder("Dealing with more than a single certificate. Their DNs:"); 74 private String postCertInHeader(URL url, X509Certificate certificate, AuthTargetMapping.AuthTarget target) argument 79 base64Certificate = Base64.encode(certificate.getEncoded()); 82 "Could not obtain the base64-encoded representation of the client certificate: " + e, e);
|
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/token/validator/disp/ |
H A D | CertificateAuthenticationRequestDispatcher.java | 39 * Class which encapsulates knowledge as to how to post a x509 certificate to the OpenAM REST authN context. It will 40 * consume the Cert module in 'portal' mode, where the Cert module expects to find the end-user certificate in a 65 StringBuilder stringBuilder = new StringBuilder("Dealing with more than a single certificate. Their DNs:"); 74 private String postCertInHeader(URL url, X509Certificate certificate, AuthTargetMapping.AuthTarget target) argument 79 base64Certificate = Base64.encode(certificate.getEncoded()); 82 "Could not obtain the base64-encoded representation of the client certificate: " + e, e);
|
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/user/invocation/ |
H A D | ProofTokenState.java | 57 private X509Certificate certificate; field in class:ProofTokenState.ProofTokenStateBuilder 61 public ProofTokenStateBuilder x509Certificate(X509Certificate certificate) { argument 62 this.certificate = certificate; 73 private final X509Certificate certificate; field in class:ProofTokenState 76 certificate = builder.certificate; 77 if (certificate == null) { 83 return certificate; 90 return (certificate [all...] |
/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/ |
H A D | DefaultSubjectProvider.java | 127 private SubjectConfirmationData getHoKSubjectConfirmationData(X509Certificate certificate) throws TokenCreationException { argument 130 keyInfoElement = keyInfoFactory.generatePublicKeyInfo(certificate);
|
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/user/invocation/ |
H A D | ProofTokenState.java | 62 private X509Certificate certificate; field in class:ProofTokenState.ProofTokenStateBuilder 69 * @param certificate the certificate to add. 72 public ProofTokenStateBuilder x509Certificate(X509Certificate certificate) { argument 73 this.certificate = certificate; 90 private final X509Certificate certificate; field in class:ProofTokenState 93 certificate = builder.certificate; 94 if (certificate [all...] |
/forgerock/openam/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/saml2/statements/ |
H A D | DefaultSubjectProvider.java | 127 private SubjectConfirmationData getHoKSubjectConfirmationData(X509Certificate certificate) throws TokenCreationException { argument 130 keyInfoElement = keyInfoFactory.generatePublicKeyInfo(certificate);
|
/forgerock/openam-v13/openam-certs/src/main/java/com/sun/identity/security/cert/ |
H A D | AMCertStore.java | 62 * The class is used to manage certificate store in LDAP server 63 * This class does get certificate with specified attr name and 64 * value. This class should be used in order to manage certificate 75 protected X509Certificate certificate = null; field in class:AMCertStore 98 * Return ldap connection for ldap certificate store, or null if an error occured when connecting. 103 * Setup the LDAP certificate directory service context for 140 * Return matched ldap result from ldap certificate store, or null if either no results or an error occured. 146 * Retrieve the DN of the signer of the certificate and 176 * Return matched ldap entry from ldap certificate store 182 * Retrieve the DN of the signer of the certificate an 285 getIssuerDN(X509Certificate certificate) argument 295 getSubjectDN(X509Certificate certificate) argument [all...] |
H A D | AMCRLStore.java | 78 * PointsExtension in client certificate or IssuingDistribution 130 * Checks certificate and returns corresponding stored CRL in ldap store 132 * @param certificate 134 public X509CRL getCRL(X509Certificate certificate) throws IOException { argument 142 crl = getCRLFromCache(certificate); 178 crlDPExt = getCRLDPExt(certificate); 212 updateCRLCache(certificate, crl); 223 * Checks certificate and returns corresponding stored CRL in cached CRL store. 225 * @param certificate 226 * @return Cached CRL information about the certificate 228 getCRLFromCache(X509Certificate certificate) argument 238 updateCRLCache(X509Certificate certificate, X509CRL crl) argument 312 getCRLDPExt(X509Certificate certificate) argument [all...] |
/forgerock/openam/openam-certs/src/main/java/com/sun/identity/security/cert/ |
H A D | AMCertStore.java | 62 * The class is used to manage certificate store in LDAP server 63 * This class does get certificate with specified attr name and 64 * value. This class should be used in order to manage certificate 75 protected X509Certificate certificate = null; field in class:AMCertStore 98 * Return ldap connection for ldap certificate store, or null if an error occured when connecting. 103 * Setup the LDAP certificate directory service context for 140 * Return matched ldap result from ldap certificate store, or null if either no results or an error occured. 146 * Retrieve the DN of the signer of the certificate and 176 * Return matched ldap entry from ldap certificate store 182 * Retrieve the DN of the signer of the certificate an 285 getIssuerDN(X509Certificate certificate) argument 295 getSubjectDN(X509Certificate certificate) argument [all...] |
H A D | AMCRLStore.java | 80 * PointsExtension in client certificate or IssuingDistribution 132 * Checks certificate and returns corresponding stored CRL in ldap store 134 * @param certificate 136 public X509CRL getCRL(X509Certificate certificate) throws IOException { argument 144 crl = getCRLFromCache(certificate); 180 crlDPExt = getCRLDPExt(certificate); 214 updateCRLCache(certificate, crl); 225 * Checks certificate and returns corresponding stored CRL in cached CRL store. 227 * @param certificate 228 * @return Cached CRL information about the certificate 230 getCRLFromCache(X509Certificate certificate) argument 240 updateCRLCache(X509Certificate certificate, X509CRL crl) argument 314 getCRLDPExt(X509Certificate certificate) argument [all...] |
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/ |
H A D | Message.java | 246 private X509Certificate certificate = null; field in class:Message 423 if (certificate == null) { 670 * Returns the X509 certificate used in client authentication. 672 * @return a X509 certificate 675 return certificate; 679 * Returns the X509 certificate used in message level authentication. 681 * @return a X509 certificate. 922 * Sets the X509 certificate used in client authentication. 924 * @param cert a X509 certificate 927 certificate [all...] |
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/ |
H A D | Message.java | 246 private X509Certificate certificate = null; field in class:Message 423 if (certificate == null) { 670 * Returns the X509 certificate used in client authentication. 672 * @return a X509 certificate 675 return certificate; 679 * Returns the X509 certificate used in message level authentication. 681 * @return a X509 certificate. 922 * Sets the X509 certificate used in client authentication. 924 * @param cert a X509 certificate 927 certificate [all...] |
/forgerock/openam-v13/openam-federation/OpenFM/src/test/resources/com/sun/identity/workflow/ |
H A D | slim-openam-soap-sts-server.war | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ... |
/forgerock/openam/openam-federation/OpenFM/src/test/resources/com/sun/identity/workflow/ |
H A D | slim-openam-soap-sts-server.war | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ... |
/forgerock/opendj-b2.6/ext/svnkit/ |
H A D | svnkit-cli.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj2.6.2/ext/svnkit/ |
H A D | svnkit-cli.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj2/ext/svnkit/lib/ |
H A D | svnkit-cli-1.8.5.jar | ... .svn.core.SVNURL url
String realm
Object certificate
boolean resultMayBeStored
String hostName
java.security.cert. ... |
/forgerock/opendj2-hg/ext/svnkit/lib/ |
H A D | svnkit-cli-1.8.5.jar | ... .svn.core.SVNURL url
String realm
Object certificate
boolean resultMayBeStored
String hostName
java.security.cert. ... |
/forgerock/opendj-b2.6/tests/staf-tests/shared/resource/ |
H A D | svnkit.jar | META-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ... |
/forgerock/opendj2/tests/staf-tests/shared/resource/ |
H A D | svnkit.jar | META-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ... |
/forgerock/opendj2.6.2/tests/staf-tests/shared/resource/ |
H A D | svnkit.jar | META-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ... |