]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/corecrypto/ccsha1/src/ccsha1_initial_state.c
xnu-2782.1.97.tar.gz
[apple/xnu.git] / osfmk / corecrypto / ccsha1 / src / ccsha1_initial_state.c
diff --git a/osfmk/corecrypto/ccsha1/src/ccsha1_initial_state.c b/osfmk/corecrypto/ccsha1/src/ccsha1_initial_state.c
new file mode 100644 (file)
index 0000000..2a5bc5e
--- /dev/null
@@ -0,0 +1,19 @@
+/*
+ *  ccsha1_initial_state.c
+ *  corecrypto
+ *
+ *  Created by Fabrice Gautier on 12/7/10.
+ *  Copyright 2010 Apple, Inc. All rights reserved.
+ *
+ */
+
+#include <corecrypto/ccsha1.h>
+#include <corecrypto/cc_priv.h>
+
+const uint32_t ccsha1_initial_state[5] = {
+    0x67452301,
+    0xefcdab89,
+    0x98badcfe,
+    0x10325476,
+    0xc3d2e1f0
+};