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
13const uint32_t ccsha1_initial_state[5] = {
14    0x67452301,
15    0xefcdab89,
16    0x98badcfe,
17    0x10325476,
18    0xc3d2e1f0
19};
20