]> git.saurik.com Git - apple/xnu.git/blame - osfmk/corecrypto/cchmac/src/cchmac_update.c
xnu-2782.1.97.tar.gz
[apple/xnu.git] / osfmk / corecrypto / cchmac / src / cchmac_update.c
CommitLineData
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
12void 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}