sha1-common.c 221 B

1234567891011
  1. /*
  2. * Common variable definitions across all the SHA-1 implementations.
  3. */
  4. #include "ssh.h"
  5. #include "sha1.h"
  6. const uint32_t sha1_initial_state[5] = {
  7. 0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0,
  8. };