]>
Commit | Line | Data |
---|---|---|
fe8ab488 A |
1 | /* |
2 | * cchmac_update.c | |
3 | * corecrypto | |
4 | * | |
5 | * Created by Michael Brouwer on 12/7/10. | |
6 | * Copyright 2010,2011 Apple Inc. All rights reserved. | |
7 | * | |
8 | */ | |
9 | ||
10 | #include <corecrypto/cchmac.h> | |
11 | ||
12 | void cchmac_update(const struct ccdigest_info *di, cchmac_ctx_t hc, | |
13 | unsigned long data_len, const void *data) { | |
14 | ccdigest_update(di, cchmac_digest_ctx(di, hc), data_len, data); | |
15 | } |