Searched refs:getAlgorithm (Results 101 - 125 of 180) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDHPrivateKey.java210 public String getAlgorithm() { method in class:DHPrivateKey
348 getAlgorithm(),
H A DDHPublicKey.java198 public String getAlgorithm() { method in class:DHPublicKey
327 getAlgorithm(),
H A DOAEPParameters.java101 if (pSrc.getAlgorithm().equals("PSpecified")) {
105 pSrc.getAlgorithm() + "; PSpecified only");
H A DARCFOURCipher.java193 String keyAlg = key.getAlgorithm();
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS8Key.java249 public String getAlgorithm() { method in class:PKCS8Key
372 getAlgorithm(),
H A DPKCS10.java228 algId = AlgorithmId.getAlgorithmId(signature.getAlgorithm());
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DRSAClientKeyExchange.java88 if (publicKey.getAlgorithm().equals("RSA") == false) {
129 if (privateKey.getAlgorithm().equals("RSA") == false) {
H A DSunX509KeyManagerImpl.java349 if (!keyType.equals(certs[0].getPublicKey().getAlgorithm())) {
355 if (!sigType.equals(certs[1].getPublicKey().getAlgorithm())) {
/openjdk7/jdk/test/javax/crypto/spec/RC2ParameterSpec/
H A DRC2AlgorithmParameters.java60 // check that getAlgorithm returns "RC2"
61 if (!rc2Params.getAlgorithm().equals("RC2")) {
62 throw new Exception("getAlgorithm() returned "
63 + rc2Params.getAlgorithm() + " instead of RC2");
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DKeySelectors.java76 public String getAlgorithm() {
167 if (algEquals(sm.getAlgorithm(), pk.getAlgorithm())) {
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKeyImpl.java111 public final String getAlgorithm() { method in class:KeyImpl
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DJceSecurityManager.java182 if (cp.getAlgorithm().equals(
H A DSecretKeyFactory.java272 public final String getAlgorithm() { method in class:SecretKeyFactory
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPrivateCrtKeyImpl.java135 public String getAlgorithm() { method in class:RSAPrivateCrtKeyImpl
H A DRSAPadding.java161 String pSrcAlgo = pSrc.getAlgorithm();
203 String digestName = md.getAlgorithm();
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DSignatureFileVerifier.java305 digest.getAlgorithm());
351 digest.getAlgorithm());
432 name + " digest=" + digest.getAlgorithm());
458 digest.getAlgorithm() +
H A DDisabledAlgorithmConstraints.java252 if (!permits(primitives, key.getAlgorithm(), null)) {
348 String algorithm = key.getAlgorithm().toLowerCase(Locale.ENGLISH);
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyValue.java84 key.getAlgorithm());
135 throw new MarshalException(publicKey.getAlgorithm() +
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/implementations/
H A DIntegrityHmac.java167 (_macAlgorithm.getAlgorithm());
356 return this._macAlgorithm.getAlgorithm();
H A DSignatureDSA.java148 (_signatureAlgorithm.getAlgorithm());
261 return this._signatureAlgorithm.getAlgorithm();
H A DSignatureECDSA.java239 (_signatureAlgorithm.getAlgorithm());
339 return this._signatureAlgorithm.getAlgorithm();
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/CTS/
H A DCTSMode.java150 String algo = KEY1.getAlgorithm();
288 String algo = KEY1.getAlgorithm();
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11SecretKeyFactory.java131 algo = key.getAlgorithm();
135 long keyAlgorithmType = getKeyType(key.getAlgorithm());
/openjdk7/jdk/src/share/classes/java/security/
H A DProvider.java781 String algorithm = s.getAlgorithm();
798 String algorithm = s.getAlgorithm();
816 String algorithm = s.getAlgorithm();
872 String algorithm = s.getAlgorithm();
1142 public final String getAlgorithm() { method in class:Provider.Service
H A DKeyStore.java406 if (!privateKey.getAlgorithm().equals
407 (clonedChain[0].getPublicKey().getAlgorithm())) {
520 return "Secret key entry with algorithm " + sKey.getAlgorithm();

Completed in 69 milliseconds

12345678