]> git.saurik.com Git - apple/xnu.git/blob - osfmk/corecrypto/ccsha1/src/ccsha1_initial_state.c
xnu-3248.50.21.tar.gz
[apple/xnu.git] / osfmk / corecrypto / ccsha1 / src / ccsha1_initial_state.c
1 /*
2 * ccsha1_initial_state.c
3 * corecrypto
4 *
5 * Created on 12/07/2010
6 *
7 * Copyright (c) 2010,2015 Apple Inc. All rights reserved.
8 *
9 */
10
11 #include <corecrypto/ccsha1.h>
12 #include <corecrypto/cc_priv.h>
13
14 const uint32_t ccsha1_initial_state[5] = {
15 0x67452301,
16 0xefcdab89,
17 0x98badcfe,
18 0x10325476,
19 0xc3d2e1f0
20 };