]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/corecrypto/cchmac/src/cchmac_update.c
5 * Created on 12/07/2010
7 * Copyright (c) 2010,2011,2015 Apple Inc. All rights reserved.
11 #include <corecrypto/cchmac.h>
13 void 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
);