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