HomeSort by: relevance | last modified time | path
    Searched defs:ossl_ctx (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
evp-openssl.c 114 struct ossl_cipher_ctx *ossl_ctx = ctx->cipher_data; /* EVP_CIPHER_CTX wrapper */ local
117 assert(ossl_ctx != NULL);
134 c = ossl_ctx->ossl_cipher = ctx->cipher->app_data; /* OpenSSL's EVP_CIPHER * */
135 if (!ossl_ctx->initialized) {
136 ossl_ctx->ossl_cipher_ctx = EVP_CIPHER_CTX_new();
137 if (ossl_ctx->ossl_cipher_ctx == NULL)
143 if (!EVP_CipherInit_ex(ossl_ctx->ossl_cipher_ctx, c, NULL, NULL, NULL, enc))
145 ossl_ctx->initialized = 1;
151 EVP_CIPHER_CTX_set_key_length(ossl_ctx->ossl_cipher_ctx, ctx->key_len);
153 return EVP_CipherInit_ex(ossl_ctx->ossl_cipher_ctx, NULL, NULL, key, iv, enc)
160 struct ossl_cipher_ctx *ossl_ctx = ctx->cipher_data; local
169 struct ossl_cipher_ctx *ossl_ctx = ctx->cipher_data; local
186 struct ossl_cipher_ctx *ossl_ctx = ctx->cipher_data; local
    [all...]
  /src/external/bsd/unbound/dist/services/
listen_dnsport.h 618 struct ngtcp2_crypto_ossl_ctx* ossl_ctx; member in struct:doq_conn
  /src/external/bsd/unbound/dist/testcode/
doqclient.c 119 struct ngtcp2_crypto_ossl_ctx* ossl_ctx; member in struct:doq_client_data
1394 if((ret=ngtcp2_crypto_ossl_ctx_new(&data->ossl_ctx, NULL)) != 0) {
1399 ngtcp2_crypto_ossl_ctx_set_ssl(data->ossl_ctx, ssl);
2298 ngtcp2_conn_set_tls_native_handle(data->conn, data->ossl_ctx);
2352 ngtcp2_crypto_ossl_ctx_del(data->ossl_ctx);

Completed in 18 milliseconds