Audacity 3.2.0
Functions | Variables
crypto::anonymous_namespace{SHA256.cpp} Namespace Reference

Functions

void sha256_transform (uint32_t state[8], const uint8_t data[64])
 

Variables

constexpr uint32_t K [64]
 

Function Documentation

◆ sha256_transform()

void crypto::anonymous_namespace{SHA256.cpp}::sha256_transform ( uint32_t  state[8],
const uint8_t  data[64] 
)

Definition at line 43 of file SHA256.cpp.

44{
45 uint32_t m[SHA256::BLOCK_SIZE];
46
47 int i = 0;
48 int j = 0;
49
50 for (; i < 16; ++i, j += 4)
51 m[i] = (data[j] << 24) | (data[j + 1] << 16) | (data[j + 2] << 8) |
52 (data[j + 3]);
53
54 for (; i < 64; ++i)
55 m[i] = SIG1(m[i - 2]) + m[i - 7] + SIG0(m[i - 15]) + m[i - 16];
56
57 uint32_t a = state[0];
58 uint32_t b = state[1];
59 uint32_t c = state[2];
60 uint32_t d = state[3];
61 uint32_t e = state[4];
62 uint32_t f = state[5];
63 uint32_t g = state[6];
64 uint32_t h = state[7];
65
66 for (i = 0; i < SHA256::BLOCK_SIZE; ++i)
67 {
68 const uint32_t t1 = h + EP1(e) + CH(e, f, g) + K[i] + m[i];
69 const uint32_t t2 = EP0(a) + MAJ(a, b, c);
70
71 h = g;
72 g = f;
73 f = e;
74 e = d + t1;
75 d = c;
76 c = b;
77 b = a;
78 a = t1 + t2;
79 }
80
81 state[0] += a;
82 state[1] += b;
83 state[2] += c;
84 state[3] += d;
85 state[4] += e;
86 state[5] += f;
87 state[6] += g;
88 state[7] += h;
89}
#define EP1(x)
Definition: SHA256.cpp:39
#define CH(x, y, z)
Definition: SHA256.cpp:36
#define SIG0(x)
Definition: SHA256.cpp:40
#define SIG1(x)
Definition: SHA256.cpp:41
#define EP0(x)
Definition: SHA256.cpp:38
#define MAJ(x, y, z)
Definition: SHA256.cpp:37

References crypto::SHA256::BLOCK_SIZE, CH, EP0, EP1, K, MAJ, SIG0, and SIG1.

Referenced by crypto::SHA256::Finalize(), and crypto::SHA256::Update().

Here is the caller graph for this function:

Variable Documentation

◆ K

constexpr uint32_t crypto::anonymous_namespace{SHA256.cpp}::K[64]
constexpr
Initial value:
= {
0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1,
0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786,
0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147,
0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b,
0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a,
0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
}

Definition at line 19 of file SHA256.cpp.

Referenced by EBUR128::CalcWeightingFilter(), and sha256_transform().