Home | History | Annotate | Download | only in native

Lines Matching refs:EVP_DigestSignFinal

4191     JNI_TRACE("EVP_DigestSignFinal(%p)", mdCtx);
4198 if (EVP_DigestSignFinal(mdCtx, NULL, &len) != 1) {
4199 JNI_TRACE("ctx=%p EVP_DigestSignFinal => threw exception", mdCtx);
4200 throwExceptionIfNecessary(env, "EVP_DigestSignFinal");
4212 if (EVP_DigestSignFinal(mdCtx, tmp, &len) != 1) {
4213 JNI_TRACE("ctx=%p EVP_DigestSignFinal => threw exception", mdCtx);
4214 throwExceptionIfNecessary(env, "EVP_DigestSignFinal");
4218 JNI_TRACE("EVP_DigestSignFinal(%p) => %p", mdCtx, outJavaBytes.get());
9653 NATIVE_METHOD(NativeCrypto, EVP_DigestSignFinal, "(L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/OpenSSLDigestContext;)[B"),