HomeSort by relevance Sort by last modified time
    Searched refs:pkey2 (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java 1550 PublicKey pkey2 = null; local
1588 PublicKey pkey2; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertSelectorTest.java 1088 PublicKey pkey2 = new TestKeyPair("DSA").getPublic(); local
1151 PublicKey pkey2 = new TestKeyPair("DSA").getPublic(); local
1199 PublicKey pkey2 = new TestKeyPair("DSA").getPublic(); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
NativeCryptoTest.java 156 int pkey1 = 0, pkey1_copy = 0, pkey2 = 0; local
178 pkey2 = NativeCrypto.EVP_PKEY_new_RSA(privKey2.getModulus().toByteArray(),
186 assertNotSame(NULL, pkey2);
207 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey2));
215 if (pkey2 != 0) {
216 NativeCrypto.EVP_PKEY_free(pkey2);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
NativeCrypto.java 81 public static native int EVP_PKEY_cmp(int pkey1, int pkey2);
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 928 EVP_PKEY* pkey2 = reinterpret_cast<EVP_PKEY*>(pkey2Ref); local
929 JNI_TRACE("EVP_PKEY_cmp(%p, %p)", pkey1, pkey2);
932 JNI_TRACE("EVP_PKEY_cmp(%p, %p) => failed pkey1 == NULL", pkey1, pkey2);
935 } else if (pkey2 == NULL) {
936 JNI_TRACE("EVP_PKEY_cmp(%p, %p) => failed pkey2 == NULL", pkey1, pkey2);
937 jniThrowNullPointerException(env, "pkey2 == NULL");
941 int result = EVP_PKEY_cmp(pkey1, pkey2);
942 JNI_TRACE("EVP_PKEY_cmp(%p, %p) => %d", pkey1, pkey2, result);
    [all...]

Completed in 245 milliseconds