Read a 256-bit hash value from the 'src' frame, advancing the cursor 256 cells. * * Precondition: '*src' is a valid read frame for 256 more cells; * NULL != h; */
| 11 | * NULL != h; |
| 12 | */ |
| 13 | static void readHash(sha256_midstate* h, frameItem *src) { |
| 14 | read32s(h->s, 8, src); |
| 15 | } |
| 16 | |
| 17 | /* Write a 256-bit hash value to the 'dst' frame, advancing the cursor 256 cells. |
| 18 | * |
no test coverage detected