Home | History | Annotate | Download | only in native

Lines Matching refs:X509_verify

4085     JNI_TRACE("X509_verify(%p, %p)", x509, pkey);
4089 JNI_TRACE("X509_verify(%p, %p) => x509 == null", x509, pkey);
4095 JNI_TRACE("X509_verify(%p, %p) => pkey == null", x509, pkey);
4099 if (X509_verify(x509, pkey) != 1) {
4100 throwExceptionIfNecessary(env, "X509_verify");
4101 JNI_TRACE("X509_verify(%p, %p) => verify failure", x509, pkey);
4103 JNI_TRACE("X509_verify(%p, %p) => verify success", x509, pkey);
7941 NATIVE_METHOD(NativeCrypto, X509_verify, "(JJ)V"),