/external/wpa_supplicant_8/src/eap_common/ |
eap_pwd_common.h | 68 struct crypto_hash * eap_pwd_h_init(void); 69 void eap_pwd_h_update(struct crypto_hash *hash, const u8 *data, size_t len); 70 void eap_pwd_h_final(struct crypto_hash *hash, u8 *digest);
|
eap_pwd_common.c | 17 struct crypto_hash * eap_pwd_h_init(void) 26 void eap_pwd_h_update(struct crypto_hash *hash, const u8 *data, size_t len) 32 void eap_pwd_h_final(struct crypto_hash *hash, u8 *digest) 43 struct crypto_hash *hash; 95 struct crypto_hash *hash; 312 struct crypto_hash *hash;
|
/external/wpa_supplicant_8/src/tls/ |
tlsv1_common.h | 238 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;
|
tlsv1_record.c | 155 struct crypto_hash *hmac; 284 struct crypto_hash *hmac;
|
tlsv1_common.c | 345 struct crypto_hash *ctx; 385 struct crypto_hash *ctx;
|
/external/wpa_supplicant_8/src/crypto/ |
crypto.h | 167 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);
|
crypto_internal.c | 19 struct crypto_hash { struct 39 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, 42 struct crypto_hash *ctx; 143 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) 179 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len)
|
crypto_libtomcrypt.c | 144 struct crypto_hash { struct 154 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, 157 struct crypto_hash *ctx; 195 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) 215 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len)
|
crypto_linux.c | 231 struct crypto_hash { struct 239 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, 242 struct crypto_hash *ctx; 315 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) 340 static void crypto_hash_deinit(struct crypto_hash *ctx) 348 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len)
|
crypto_openssl.c | 862 struct crypto_hash { struct 867 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, 870 struct crypto_hash *ctx; 914 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) 922 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) [all...] |
/external/python/cpython3/Modules/_blake2/impl/ |
blake2b-ref.c | 383 int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) function
|
blake2b.c | 416 int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) function
|
blake2s-ref.c | 373 int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) function
|
blake2s.c | 397 int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen ) function
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_pwd.c | 309 struct crypto_hash *hash; 790 struct crypto_hash *hash;
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap_pwd.c | 573 struct crypto_hash *hash;
|