]> git.saurik.com Git - apple/xnu.git/blob - osfmk/corecrypto/cchmac/src/cchmac_update.c
b6c5df262c9d21d387cdbf4864ecbd1a11e58df8
[apple/xnu.git] / osfmk / corecrypto / cchmac / src / cchmac_update.c
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 }