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_org/crypto/
hmac_win.cc 28 SHA256_BLOCK_SIZE = 64 // Block size (in bytes) of the input to SHA-256.
51 unsigned char key0[SHA256_BLOCK_SIZE];
52 if (key_len > SHA256_BLOCK_SIZE) {
56 memset(key0 + SHA256_LENGTH, 0, SHA256_BLOCK_SIZE - SHA256_LENGTH);
59 if (key_len < SHA256_BLOCK_SIZE)
60 memset(key0 + key_len, 0, SHA256_BLOCK_SIZE - key_len);
63 unsigned char padded_key[SHA256_BLOCK_SIZE];
67 for (int i = 0; i < SHA256_BLOCK_SIZE; ++i)
72 SHA256_Update(&ctx, padded_key, SHA256_BLOCK_SIZE);
77 for (int i = 0; i < SHA256_BLOCK_SIZE; ++i
    [all...]

Completed in 208 milliseconds