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

  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_common.c 213 crypto_hash_update(verify->md5_client, buf, len);
214 crypto_hash_update(verify->sha1_client, buf, len);
217 crypto_hash_update(verify->md5_server, buf, len);
218 crypto_hash_update(verify->sha1_server, buf, len);
221 crypto_hash_update(verify->md5_cert, buf, len);
222 crypto_hash_update(verify->sha1_cert, buf, len);
tlsv1_record.c 183 crypto_hash_update(hmac, rl->write_seq_num, TLS_SEQ_NUM_LEN);
185 crypto_hash_update(hmac, ct_start, pos - ct_start);
377 crypto_hash_update(hmac, rl->read_seq_num, TLS_SEQ_NUM_LEN);
379 crypto_hash_update(hmac, in_data - TLS_RECORD_HEADER_LEN, 3);
381 crypto_hash_update(hmac, len, 2);
382 crypto_hash_update(hmac, out_data, *out_len);
  /external/wpa_supplicant/
tlsv1_common.c 327 crypto_hash_update(hmac, rl->write_seq_num, TLS_SEQ_NUM_LEN);
329 crypto_hash_update(hmac, ct_start, pos - ct_start);
520 crypto_hash_update(hmac, rl->read_seq_num, TLS_SEQ_NUM_LEN);
522 crypto_hash_update(hmac, in_data - TLS_RECORD_HEADER_LEN, 3);
524 crypto_hash_update(hmac, len, 2);
525 crypto_hash_update(hmac, out_data, *out_len);
crypto.h 158 * crypto_hash_update - Add data to hash calculation
167 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len);
177 * or -2 on other failures (including failed crypto_hash_update() operations)
tlsv1_client.c 112 crypto_hash_update(conn->verify_md5_client, buf, len);
113 crypto_hash_update(conn->verify_sha1_client, buf, len);
116 crypto_hash_update(conn->verify_md5_server, buf, len);
117 crypto_hash_update(conn->verify_sha1_server, buf, len);
120 crypto_hash_update(conn->verify_md5_cert, buf, len);
121 crypto_hash_update(conn->verify_sha1_cert, buf, len);
    [all...]
crypto_cryptoapi.c 480 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) function
crypto_internal.c 132 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) function
crypto_libtomcrypt.c 201 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) function
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto.h 159 * crypto_hash_update - Add data to hash calculation
168 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len);
178 * or -2 on other failures (including failed crypto_hash_update() operations)
crypto_cryptoapi.c 465 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) function
crypto_libtomcrypt.c 201 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) function
crypto_internal.c 133 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) function

Completed in 187 milliseconds