]> git.saurik.com Git - apple/xnu.git/blob - 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
1 /*
2 * ccsha1_initial_state.c
3 * corecrypto
4 *
5 * Created by Fabrice Gautier on 12/7/10.
6 * Copyright 2010 Apple, Inc. All rights reserved.
7 *
8 */
9
10 #include <corecrypto/ccsha1.h>
11 #include <corecrypto/cc_priv.h>
12
13 const uint32_t ccsha1_initial_state[5] = {
14 0x67452301,
15 0xefcdab89,
16 0x98badcfe,
17 0x10325476,
18 0xc3d2e1f0
19 };