]> git.saurik.com Git - apple/xnu.git/blame - EXTERNAL_HEADERS/corecrypto/ccdigest_priv.h
xnu-6153.11.26.tar.gz
[apple/xnu.git] / EXTERNAL_HEADERS / corecrypto / ccdigest_priv.h
CommitLineData
fe8ab488
A
1/*
2 * ccdigest_priv.h
3 * corecrypto
4 *
3e170ce0
A
5 * Created on 12/07/2010
6 *
7 * Copyright (c) 2010,2011,2012,2015 Apple Inc. All rights reserved.
fe8ab488
A
8 *
9 */
10
11#ifndef _CORECRYPTO_CCDIGEST_PRIV_H_
12#define _CORECRYPTO_CCDIGEST_PRIV_H_
13
cb323159 14#include <corecrypto/cc_priv.h>
fe8ab488 15#include <corecrypto/ccdigest.h>
39037602 16#include <corecrypto/ccasn1.h>
fe8ab488 17
d9a64523 18CC_INLINE CC_NONNULL((1))
39037602
A
19bool ccdigest_oid_equal(const struct ccdigest_info *di, ccoid_t oid) {
20 if(di->oid == NULL && CCOID(oid) == NULL) return true;
21 if(di->oid == NULL || CCOID(oid) == NULL) return false;
22 return ccoid_equal(di->oid, oid);
23}
24
25typedef const struct ccdigest_info *(ccdigest_lookup)(ccoid_t oid);
26
27#include <stdarg.h>
28const struct ccdigest_info *ccdigest_oid_lookup(ccoid_t oid, ...);
29
cb323159
A
30#define ccdigest_copy_state(_di_, _dst_, _src_) cc_memcpy_nochk(_dst_, _src_, (_di_)->state_size)
31
fe8ab488 32#endif /* _CORECRYPTO_CCDIGEST_PRIV_H_ */