HomeSort by relevance Sort by last modified time
    Searched defs:SHA256_BLOCK_SIZE (Results 1 - 2 of 2) sorted by null

  /external/wpa_supplicant_8/src/crypto/
sha256_i.h 12 #define SHA256_BLOCK_SIZE 64
17 u8 buf[SHA256_BLOCK_SIZE];
  /external/chromium/crypto/
hmac_win.cc 28 SHA256_BLOCK_SIZE = 64 // Block size (in bytes) of the input to SHA-256.
38 unsigned char key0[SHA256_BLOCK_SIZE];
39 if (key_len > SHA256_BLOCK_SIZE) {
43 memset(key0 + SHA256_LENGTH, 0, SHA256_BLOCK_SIZE - SHA256_LENGTH);
46 memset(key0 + key_len, 0, SHA256_BLOCK_SIZE - key_len);
49 unsigned char padded_key[SHA256_BLOCK_SIZE];
53 for (int i = 0; i < SHA256_BLOCK_SIZE; ++i)
58 SHA256_Update(&ctx, padded_key, SHA256_BLOCK_SIZE);
63 for (int i = 0; i < SHA256_BLOCK_SIZE; ++i)
68 SHA256_Update(&ctx, padded_key, SHA256_BLOCK_SIZE);
    [all...]

Completed in 606 milliseconds