1 /* Copyright (c) (2010,2015,2017,2018,2019) Apple Inc. All rights reserved. 2 * 3 * corecrypto is licensed under Apple Inc.’s Internal Use License Agreement (which 4 * is contained in the License.txt file distributed with corecrypto) and only to 5 * people who accept that license. IMPORTANT: Any license rights granted to you by 6 * Apple Inc. (if any) are limited to internal use within your organization only on 7 * devices and computers you own or control, for the sole purpose of verifying the 8 * security characteristics and correct functioning of the Apple Software. You may 9 * not, directly or indirectly, redistribute the Apple Software or any portions thereof. 10 */ 11 12 #ifndef _CORECRYPTO_CCMD4_H_ 13 #define _CORECRYPTO_CCMD4_H_ 14 15 #include <corecrypto/ccdigest.h> 16 17 #define CCMD4_BLOCK_SIZE 64 18 #define CCMD4_OUTPUT_SIZE 16 19 #define CCMD4_STATE_SIZE 16 20 21 extern const struct ccdigest_info ccmd4_ltc_di; 22 23 /* default is libtomcrypt */ 24 #define ccmd4_di ccmd4_ltc_di 25 26 #endif /* _CORECRYPTO_CCMD4_H_ */ 27