HomeSort by: relevance | last modified time | path
    Searched refs:check_ctx (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/evp/
exchange.c 388 EVP_PKEY_CTX *check_ctx = NULL; local
405 check_ctx = EVP_PKEY_CTX_new_from_pkey(ctx->libctx, peer, ctx->propquery);
406 if (check_ctx == NULL)
408 check = EVP_PKEY_public_check(check_ctx);
409 EVP_PKEY_CTX_free(check_ctx);
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
exchange.c 382 EVP_PKEY_CTX *check_ctx = NULL; local
399 check_ctx = EVP_PKEY_CTX_new_from_pkey(ctx->libctx, peer, ctx->propquery);
400 if (check_ctx == NULL)
402 check = EVP_PKEY_public_check(check_ctx);
403 EVP_PKEY_CTX_free(check_ctx);
  /src/crypto/external/apache2/openssl/dist/test/
dsatest.c 457 EVP_PKEY_CTX *check_ctx = NULL; local
465 && TEST_ptr(check_ctx = EVP_PKEY_CTX_new_from_pkey(NULL, params, NULL))
466 && TEST_int_gt(EVP_PKEY_param_check(check_ctx), 0);
469 EVP_PKEY_CTX_free(check_ctx);
evp_extra_test2.c 3065 EVP_PKEY_CTX *gen_ctx = NULL, *check_ctx = NULL; local
3074 && TEST_ptr(check_ctx = EVP_PKEY_CTX_new_from_pkey(mainctx, pkey,
3076 && TEST_int_eq(EVP_PKEY_param_check(check_ctx), expected);
3077 EVP_PKEY_CTX_free(check_ctx);
  /src/crypto/external/bsd/openssl/dist/test/
dsatest.c 311 EVP_PKEY_CTX *check_ctx = NULL; local
319 && TEST_ptr(check_ctx = EVP_PKEY_CTX_new_from_pkey(NULL, params, NULL))
320 && TEST_int_gt(EVP_PKEY_param_check(check_ctx), 0);
323 EVP_PKEY_CTX_free(check_ctx);
evp_extra_test2.c 890 EVP_PKEY_CTX *gen_ctx = NULL, *check_ctx = NULL; local
898 && TEST_ptr(check_ctx = EVP_PKEY_CTX_new_from_pkey(mainctx, pkey,
900 && TEST_int_eq(EVP_PKEY_param_check(check_ctx), expected);
901 EVP_PKEY_CTX_free(check_ctx);

Completed in 25 milliseconds