]> git.saurik.com Git - apple/xnu.git/blob - EXTERNAL_HEADERS/corecrypto/ccdigest_priv.h
xnu-3248.60.10.tar.gz
[apple/xnu.git] / EXTERNAL_HEADERS / corecrypto / ccdigest_priv.h
1 /*
2 * ccdigest_priv.h
3 * corecrypto
4 *
5 * Created on 12/07/2010
6 *
7 * Copyright (c) 2010,2011,2012,2015 Apple Inc. All rights reserved.
8 *
9 */
10
11 #ifndef _CORECRYPTO_CCDIGEST_PRIV_H_
12 #define _CORECRYPTO_CCDIGEST_PRIV_H_
13
14 #include <corecrypto/ccdigest.h>
15
16 void ccdigest_final_common(const struct ccdigest_info *di,
17 ccdigest_ctx_t ctx, void *digest);
18 void ccdigest_final_64be(const struct ccdigest_info *di, ccdigest_ctx_t,
19 unsigned char *digest);
20 void ccdigest_final_64le(const struct ccdigest_info *di, ccdigest_ctx_t,
21 unsigned char *digest);
22
23 #endif /* _CORECRYPTO_CCDIGEST_PRIV_H_ */