Home
last modified time | relevance | path

Searched refs:crypto_hash (Results 1 – 17 of 17) sorted by relevance

/external/wpa_supplicant_8/src/tls/
Dtlsv1_common.h238 struct crypto_hash *md5_client;
239 struct crypto_hash *sha1_client;
240 struct crypto_hash *sha256_client;
241 struct crypto_hash *md5_server;
242 struct crypto_hash *sha1_server;
243 struct crypto_hash *sha256_server;
244 struct crypto_hash *md5_cert;
245 struct crypto_hash *sha1_cert;
246 struct crypto_hash *sha256_cert;
Dtlsv1_record.c155 struct crypto_hash *hmac; in tlsv1_record_send()
284 struct crypto_hash *hmac; in tlsv1_record_receive()
Dtlsv1_common.c345 struct crypto_hash *ctx; in tlsv12_key_x_server_params_hash()
385 struct crypto_hash *ctx; in tls_key_x_server_params_hash()
/external/wpa_supplicant_8/src/eap_common/
Deap_pwd_common.h67 struct crypto_hash * eap_pwd_h_init(void);
68 void eap_pwd_h_update(struct crypto_hash *hash, const u8 *data, size_t len);
69 void eap_pwd_h_final(struct crypto_hash *hash, u8 *digest);
Deap_pwd_common.c21 struct crypto_hash * eap_pwd_h_init(void) in eap_pwd_h_init()
30 void eap_pwd_h_update(struct crypto_hash *hash, const u8 *data, size_t len) in eap_pwd_h_update()
36 void eap_pwd_h_final(struct crypto_hash *hash, u8 *digest) in eap_pwd_h_final()
47 struct crypto_hash *hash; in eap_pwd_kdf()
149 struct crypto_hash *hash; in compute_password_element()
373 struct crypto_hash *hash; in compute_keys()
/external/wpa_supplicant_8/src/crypto/
Dcrypto_internal.c19 struct crypto_hash { struct
39 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, in crypto_hash_init() argument
42 struct crypto_hash *ctx; in crypto_hash_init()
143 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update()
179 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) in crypto_hash_finish()
Dcrypto.h167 struct crypto_hash;
181 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key,
194 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len);
213 int crypto_hash_finish(struct crypto_hash *ctx, u8 *hash, size_t *len);
Dcrypto_libtomcrypt.c144 struct crypto_hash { struct
154 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, in crypto_hash_init() argument
157 struct crypto_hash *ctx; in crypto_hash_init()
195 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update()
215 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) in crypto_hash_finish()
Dcrypto_linux.c231 struct crypto_hash { struct
239 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, in crypto_hash_init() argument
242 struct crypto_hash *ctx; in crypto_hash_init()
315 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update()
340 static void crypto_hash_deinit(struct crypto_hash *ctx) in crypto_hash_deinit()
348 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) in crypto_hash_finish()
Dcrypto_wolfssl.c876 struct crypto_hash { struct
882 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, in crypto_hash_init() argument
885 struct crypto_hash *ret = NULL; in crypto_hash_init()
886 struct crypto_hash *hash; in crypto_hash_init()
929 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update()
937 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) in crypto_hash_finish()
Dcrypto_openssl.c978 struct crypto_hash { struct
983 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, in crypto_hash_init() argument
986 struct crypto_hash *ctx; in crypto_hash_init()
1030 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update()
1038 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) in crypto_hash_finish()
/external/python/cpython3/Modules/_blake2/impl/
Dblake2s.c397 int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) in crypto_hash() function
Dblake2s-ref.c373 int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) in crypto_hash() function
Dblake2b-ref.c383 int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) in crypto_hash() function
Dblake2b.c416 int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) in crypto_hash() function
/external/wpa_supplicant_8/src/eap_server/
Deap_server_pwd.c314 struct crypto_hash *hash = NULL; in eap_pwd_build_confirm_req()
747 struct crypto_hash *hash = NULL; in eap_pwd_process_confirm_resp()
/external/wpa_supplicant_8/src/eap_peer/
Deap_pwd.c645 struct crypto_hash *hash = NULL; in eap_pwd_perform_confirm_exchange()