xref: /xnu-12377.81.4/osfmk/corecrypto/ccsha512_initial_state.c (revision 043036a2b3718f7f0be807e2870f8f47d3fa0796)
1 /* Copyright (c) (2010,2015,2019) Apple Inc. All rights reserved.
2  *
3  * corecrypto is licensed under Apple Inc.’s Internal Use License Agreement (which
4  * is contained in the License.txt file distributed with corecrypto) and only to
5  * people who accept that license. IMPORTANT:  Any license rights granted to you by
6  * Apple Inc. (if any) are limited to internal use within your organization only on
7  * devices and computers you own or control, for the sole purpose of verifying the
8  * security characteristics and correct functioning of the Apple Software.  You may
9  * not, directly or indirectly, redistribute the Apple Software or any portions thereof.
10  */
11 
12 #include <corecrypto/cc_priv.h>
13 #include "ccsha2_internal.h"
14 
15 const uint64_t ccsha512_initial_state[8] = {
16     0x6a09e667f3bcc908,
17     0xbb67ae8584caa73b,
18     0x3c6ef372fe94f82b,
19     0xa54ff53a5f1d36f1,
20     0x510e527fade682d1,
21     0x9b05688c2b3e6c1f,
22     0x1f83d9abfb41bd6b,
23     0x5be0cd19137e2179,
24 };
25