Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | /* Copyright (c) (2010-2012,2015-2017,2019,2021,2023) Apple Inc. All rights reserved. * * corecrypto is licensed under Apple Inc.’s Internal Use License Agreement (which * is contained in the License.txt file distributed with corecrypto) and only to * people who accept that license. IMPORTANT: Any license rights granted to you by * Apple Inc. (if any) are limited to internal use within your organization only on * devices and computers you own or control, for the sole purpose of verifying the * security characteristics and correct functioning of the Apple Software. You may * not, directly or indirectly, redistribute the Apple Software or any portions thereof. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include "cc_internal.h" #include <corecrypto/cchkdf.h> #include <corecrypto/cchmac.h> #include <corecrypto/cc.h> #include <corecrypto/cc_priv.h> int cchkdf_extract(const struct ccdigest_info *di, size_t salt_nbytes, const void *salt, size_t ikm_nbytes, const void *ikm, void *prk) { CC_ENSURE_DIT_ENABLED const uint8_t zeros[MAX_DIGEST_OUTPUT_SIZE] = { 0 }; if (salt_nbytes == 0) { salt = zeros; salt_nbytes = di->output_size; } cchmac(di, salt_nbytes, salt, ikm_nbytes, ikm, prk); return CCERR_OK; } int cchkdf_expand(const struct ccdigest_info *di, size_t prk_nbytes, const void *prk, size_t info_nbytes, const void *info, size_t dk_nbytes, void *dk) { CC_ENSURE_DIT_ENABLED uint8_t T[MAX_DIGEST_OUTPUT_SIZE]; size_t n = cc_ceiling(dk_nbytes, di->output_size); if (n > 255) { return CCERR_PARAMETER; } if (prk_nbytes < di->output_size) { return CCERR_PARAMETER; } cchmac_di_decl(di, hc); // Initialize HMAC once and copy its state over for every loop iteration. // That saves some cycles and allows passing prk == dk. cchmac_di_decl(di, hci); cchmac_init(di, hci, prk_nbytes, prk); size_t Tlen = 0; size_t offset = 0; for (size_t i = 1; i <= n; ++i) { // Copy initialized HMAC state. cc_memcpy(hc, hci, cchmac_di_size(di)); cchmac_update(di, hc, Tlen, T); cchmac_update(di, hc, info_nbytes, info); uint8_t b = (uint8_t)i; cchmac_update(di, hc, 1, &b); cchmac_final(di, hc, T); if (i == n) { cc_memcpy((uint8_t *)dk + offset, T, dk_nbytes - offset); } else { cc_memcpy((uint8_t *)dk + offset, T, di->output_size); } offset += di->output_size; Tlen = di->output_size; } cchmac_di_clear(di, hci); cchmac_di_clear(di, hc); cc_clear(di->output_size, T); return CCERR_OK; } int cchkdf(const struct ccdigest_info *di, size_t ikm_nbytes, const void *ikm, size_t salt_nbytes, const void *salt, size_t info_nbytes, const void *info, size_t dk_nbytes, void *dk) { CC_ENSURE_DIT_ENABLED uint8_t prk[MAX_DIGEST_OUTPUT_SIZE]; int result = cchkdf_extract(di, salt_nbytes, salt, ikm_nbytes, ikm, prk); if (result == CCERR_OK) { result = cchkdf_expand(di, di->output_size, prk, info_nbytes, info, dk_nbytes, dk); } cc_clear(di->output_size, prk); return result; } |