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

  /external/wpa_supplicant_8/src/crypto/
tls_none.c 25 int tls_get_errors(void *tls_ctx)
31 struct tls_connection * tls_connection_init(void *tls_ctx)
37 void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn)
42 int tls_connection_established(void *tls_ctx, struct tls_connection *conn)
48 int tls_connection_shutdown(void *tls_ctx, struct tls_connection *conn)
54 int tls_connection_set_params(void *tls_ctx, struct tls_connection *conn,
61 int tls_global_set_params(void *tls_ctx,
68 int tls_global_set_verify(void *tls_ctx, int check_crl)
74 int tls_connection_set_verify(void *tls_ctx, struct tls_connection *conn,
82 int tls_connection_get_random(void *tls_ctx, struct tls_connection *conn
    [all...]
tls.h 194 * Returns: Context data to be used as tls_ctx in calls to other functions,
207 * @tls_ctx: TLS context data from tls_init()
215 void tls_deinit(void *tls_ctx);
219 * @tls_ctx: TLS context data from tls_init()
224 int tls_get_errors(void *tls_ctx);
228 * @tls_ctx: TLS context data from tls_init()
231 struct tls_connection * tls_connection_init(void *tls_ctx);
235 * @tls_ctx: TLS context data from tls_init()
240 void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn);
244 * @tls_ctx: TLS context data from tls_init(
    [all...]
tls_internal.c 87 int tls_get_errors(void *tls_ctx)
93 struct tls_connection * tls_connection_init(void *tls_ctx)
96 struct tls_global *global = tls_ctx;
150 void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn)
166 int tls_connection_established(void *tls_ctx, struct tls_connection *conn)
180 int tls_connection_shutdown(void *tls_ctx, struct tls_connection *conn)
194 int tls_connection_set_params(void *tls_ctx, struct tls_connection *conn,
291 int tls_global_set_params(void *tls_ctx,
295 struct tls_global *global = tls_ctx;
348 int tls_global_set_verify(void *tls_ctx, int check_crl
    [all...]
tls_gnutls.c 345 int tls_connection_set_params(void *tls_ctx, struct tls_connection *conn,
652 int tls_global_set_params(void *tls_ctx,
655 struct tls_global *global = tls_ctx;
813 int tls_connection_prf(void *tls_ctx, struct tls_connection *conn,
    [all...]
tls_openssl.c     [all...]
  /external/boringssl/src/crypto/cipher/
e_tls.c 47 AEAD_TLS_CTX *tls_ctx = (AEAD_TLS_CTX *)ctx->aead_state; local
48 EVP_CIPHER_CTX_cleanup(&tls_ctx->cipher_ctx);
49 HMAC_CTX_cleanup(&tls_ctx->hmac_ctx);
50 OPENSSL_cleanse(&tls_ctx->mac_key, sizeof(tls_ctx->mac_key));
51 OPENSSL_free(tls_ctx);
77 AEAD_TLS_CTX *tls_ctx = OPENSSL_malloc(sizeof(AEAD_TLS_CTX)); local
78 if (tls_ctx == NULL) {
82 EVP_CIPHER_CTX_init(&tls_ctx->cipher_ctx);
83 HMAC_CTX_init(&tls_ctx->hmac_ctx)
108 AEAD_TLS_CTX *tls_ctx = (AEAD_TLS_CTX *)ctx->aead_state; local
209 AEAD_TLS_CTX *tls_ctx = (AEAD_TLS_CTX *)ctx->aead_state; local
436 const AEAD_TLS_CTX *tls_ctx = (AEAD_TLS_CTX*) ctx->aead_state; local
447 const AEAD_TLS_CTX *tls_ctx = (AEAD_TLS_CTX*) ctx->aead_state; local
    [all...]

Completed in 110 milliseconds