Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/sha1-common.c')
-rw-r--r--crypto/sha1-common.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/sha1-common.c b/crypto/sha1-common.c
new file mode 100644
index 00000000..bf1db67a
--- /dev/null
+++ b/crypto/sha1-common.c
@@ -0,0 +1,10 @@
+/*
+ * Common variable definitions across all the SHA-1 implementations.
+ */
+
+#include "ssh.h"
+#include "sha1.h"
+
+const uint32_t sha1_initial_state[5] = {
+ 0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0,
+};