]> git.saurik.com Git - apple/xnu.git/blame_incremental - osfmk/corecrypto/cchmac/src/cchmac_update.c
xnu-3789.70.16.tar.gz
[apple/xnu.git] / osfmk / corecrypto / cchmac / src / cchmac_update.c
... / ...
CommitLineData
1/*
2 * cchmac_update.c
3 * corecrypto
4 *
5 * Created on 12/07/2010
6 *
7 * Copyright (c) 2010,2011,2015 Apple Inc. All rights reserved.
8 *
9 */
10
11#include <corecrypto/cchmac.h>
12
13void cchmac_update(const struct ccdigest_info *di, cchmac_ctx_t hc,
14 size_t data_len, const void *data) {
15 ccdigest_update(di, cchmac_digest_ctx(di, hc), data_len, data);
16}