]>
Commit | Line | Data |
---|---|---|
fe8ab488 A |
1 | /* |
2 | * ccdigest_priv.h | |
3 | * corecrypto | |
4 | * | |
5 | * Created by Fabrice Gautier on 12/7/10. | |
6 | * Copyright 2010,2011 Apple, Inc. All rights reserved. | |
7 | * | |
8 | */ | |
9 | ||
10 | #ifndef _CORECRYPTO_CCDIGEST_PRIV_H_ | |
11 | #define _CORECRYPTO_CCDIGEST_PRIV_H_ | |
12 | ||
13 | #include <corecrypto/ccdigest.h> | |
14 | ||
15 | void ccdigest_final_common(const struct ccdigest_info *di, | |
16 | ccdigest_ctx_t ctx, void *digest); | |
17 | void ccdigest_final_64be(const struct ccdigest_info *di, ccdigest_ctx_t, | |
18 | unsigned char *digest); | |
19 | void ccdigest_final_64le(const struct ccdigest_info *di, ccdigest_ctx_t, | |
20 | unsigned char *digest); | |
21 | ||
22 | #endif /* _CORECRYPTO_CCDIGEST_PRIV_H_ */ |