/external/wpa_supplicant_8/src/tls/ |
tlsv1_common.c | 254 crypto_hash_finish(verify->md5_client, NULL, NULL); 255 crypto_hash_finish(verify->md5_server, NULL, NULL); 256 crypto_hash_finish(verify->md5_cert, NULL, NULL); 257 crypto_hash_finish(verify->sha1_client, NULL, NULL); 258 crypto_hash_finish(verify->sha1_server, NULL, NULL); 259 crypto_hash_finish(verify->sha1_cert, NULL, NULL); 267 crypto_hash_finish(verify->sha256_client, NULL, NULL); 268 crypto_hash_finish(verify->sha256_server, NULL, NULL); 269 crypto_hash_finish(verify->sha256_cert, NULL, NULL);
|
tlsv1_client_write.c | 478 crypto_hash_finish(conn->verify.sha256_cert, hpos, &hlen) < 511 crypto_hash_finish(conn->verify.md5_cert, hpos, &hlen) < 0) 516 crypto_hash_finish(conn->verify.sha1_cert, NULL, NULL); 522 crypto_hash_finish(conn->verify.md5_cert, NULL, NULL); 527 crypto_hash_finish(conn->verify.sha1_cert, hpos, &hlen) < 0) { 656 crypto_hash_finish(conn->verify.sha256_client, hash, &hlen) 669 crypto_hash_finish(conn->verify.md5_client, hash, &hlen) < 0) { 673 crypto_hash_finish(conn->verify.sha1_client, NULL, NULL); 680 crypto_hash_finish(conn->verify.sha1_client, hash + MD5_MAC_LEN,
|
tlsv1_server_read.c | 873 crypto_hash_finish(conn->verify.sha256_cert, hpos, &hlen) < 887 crypto_hash_finish(conn->verify.md5_cert, hpos, &hlen) < 0) 892 crypto_hash_finish(conn->verify.sha1_cert, NULL, NULL); 898 crypto_hash_finish(conn->verify.md5_cert, NULL, NULL); 903 crypto_hash_finish(conn->verify.sha1_cert, hpos, &hlen) < 0) { 1127 crypto_hash_finish(conn->verify.sha256_client, hash, &hlen) 1140 crypto_hash_finish(conn->verify.md5_client, hash, &hlen) < 0) { 1144 crypto_hash_finish(conn->verify.sha1_client, NULL, NULL); 1151 crypto_hash_finish(conn->verify.sha1_client, hash + MD5_MAC_LEN,
|
tlsv1_record.c | 222 crypto_hash_finish(hmac, NULL, NULL); 226 if (crypto_hash_finish(hmac, pos, &clen) < 0) { 452 if (crypto_hash_finish(hmac, hash, &hlen) < 0) {
|
tlsv1_client_read.c | 824 crypto_hash_finish(conn->verify.sha256_server, hash, &hlen) 837 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) { 841 crypto_hash_finish(conn->verify.sha1_server, NULL, NULL); 848 crypto_hash_finish(conn->verify.sha1_server, hash + MD5_MAC_LEN,
|
tlsv1_server_write.c | 589 crypto_hash_finish(conn->verify.sha256_server, hash, &hlen) 602 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) { 606 crypto_hash_finish(conn->verify.sha1_server, NULL, NULL); 613 crypto_hash_finish(conn->verify.sha1_server, hash + MD5_MAC_LEN,
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
tlsv1_common.c | 229 crypto_hash_finish(verify->md5_client, NULL, NULL); 230 crypto_hash_finish(verify->md5_server, NULL, NULL); 231 crypto_hash_finish(verify->md5_cert, NULL, NULL); 232 crypto_hash_finish(verify->sha1_client, NULL, NULL); 233 crypto_hash_finish(verify->sha1_server, NULL, NULL); 234 crypto_hash_finish(verify->sha1_cert, NULL, NULL);
|
tlsv1_client_write.c | 483 crypto_hash_finish(conn->verify.md5_cert, hpos, &hlen) < 0) 488 crypto_hash_finish(conn->verify.sha1_cert, NULL, NULL); 494 crypto_hash_finish(conn->verify.md5_cert, NULL, NULL); 499 crypto_hash_finish(conn->verify.sha1_cert, hpos, &hlen) < 0) { 607 crypto_hash_finish(conn->verify.md5_client, hash, &hlen) < 0) { 611 crypto_hash_finish(conn->verify.sha1_client, NULL, NULL); 618 crypto_hash_finish(conn->verify.sha1_client, hash + MD5_MAC_LEN,
|
tlsv1_server_read.c | 832 crypto_hash_finish(conn->verify.md5_cert, hpos, &hlen) < 0) 837 crypto_hash_finish(conn->verify.sha1_cert, NULL, NULL); 843 crypto_hash_finish(conn->verify.md5_cert, NULL, NULL); 848 crypto_hash_finish(conn->verify.sha1_cert, hpos, &hlen) < 0) { 1031 crypto_hash_finish(conn->verify.md5_client, hash, &hlen) < 0) { 1035 crypto_hash_finish(conn->verify.sha1_client, NULL, NULL); 1042 crypto_hash_finish(conn->verify.sha1_client, hash + MD5_MAC_LEN,
|
tlsv1_record.c | 190 crypto_hash_finish(hmac, NULL, NULL); 194 if (crypto_hash_finish(hmac, pos, &clen) < 0) { 384 if (crypto_hash_finish(hmac, hash, &hlen) < 0) {
|
tlsv1_client_read.c | 820 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) { 824 crypto_hash_finish(conn->verify.sha1_server, NULL, NULL); 831 crypto_hash_finish(conn->verify.sha1_server, hash + MD5_MAC_LEN,
|
tlsv1_server_write.c | 599 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) { 603 crypto_hash_finish(conn->verify.sha1_server, NULL, NULL); 610 crypto_hash_finish(conn->verify.sha1_server, hash + MD5_MAC_LEN,
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_internal.c | 151 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) function
|
crypto.h | 186 * crypto_hash_finish - Complete hash calculation 202 int crypto_hash_finish(struct crypto_hash *ctx, u8 *hash, size_t *len);
|
crypto_cryptoapi.c | 467 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) function
|
crypto_libtomcrypt.c | 214 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) function
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
crypto.h | 171 * crypto_hash_finish - Complete hash calculation 187 int crypto_hash_finish(struct crypto_hash *ctx, u8 *hash, size_t *len);
|
crypto_cryptoapi.c | 477 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) function
|
crypto_libtomcrypt.c | 221 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) function
|
crypto_internal.c | 151 int crypto_hash_finish(struct crypto_hash *ctx, u8 *mac, size_t *len) function
|