1*fdd8201dSApple OSS Distributions /* Copyright (c) (2010,2011,2012,2014,2015,2016,2017,2018,2019) Apple Inc. All rights reserved. 2*fdd8201dSApple OSS Distributions * 3*fdd8201dSApple OSS Distributions * corecrypto is licensed under Apple Inc.’s Internal Use License Agreement (which 4*fdd8201dSApple OSS Distributions * is contained in the License.txt file distributed with corecrypto) and only to 5*fdd8201dSApple OSS Distributions * people who accept that license. IMPORTANT: Any license rights granted to you by 6*fdd8201dSApple OSS Distributions * Apple Inc. (if any) are limited to internal use within your organization only on 7*fdd8201dSApple OSS Distributions * devices and computers you own or control, for the sole purpose of verifying the 8*fdd8201dSApple OSS Distributions * security characteristics and correct functioning of the Apple Software. You may 9*fdd8201dSApple OSS Distributions * not, directly or indirectly, redistribute the Apple Software or any portions thereof. 10*fdd8201dSApple OSS Distributions */ 11*fdd8201dSApple OSS Distributions 12*fdd8201dSApple OSS Distributions #ifndef _CORECRYPTO_CCSHA1_H_ 13*fdd8201dSApple OSS Distributions #define _CORECRYPTO_CCSHA1_H_ 14*fdd8201dSApple OSS Distributions 15*fdd8201dSApple OSS Distributions #include <corecrypto/ccdigest.h> 16*fdd8201dSApple OSS Distributions #include <corecrypto/cc_config.h> 17*fdd8201dSApple OSS Distributions 18*fdd8201dSApple OSS Distributions #define CCSHA1_BLOCK_SIZE 64 19*fdd8201dSApple OSS Distributions #define CCSHA1_OUTPUT_SIZE 20 20*fdd8201dSApple OSS Distributions #define CCSHA1_STATE_SIZE 20 21*fdd8201dSApple OSS Distributions 22*fdd8201dSApple OSS Distributions /* sha1 selector */ 23*fdd8201dSApple OSS Distributions const struct ccdigest_info *ccsha1_di(void); 24*fdd8201dSApple OSS Distributions 25*fdd8201dSApple OSS Distributions /* Implementations */ 26*fdd8201dSApple OSS Distributions extern const struct ccdigest_info ccsha1_ltc_di; 27*fdd8201dSApple OSS Distributions extern const struct ccdigest_info ccsha1_eay_di; 28*fdd8201dSApple OSS Distributions 29*fdd8201dSApple OSS Distributions #if CCSHA1_VNG_INTEL 30*fdd8201dSApple OSS Distributions extern const struct ccdigest_info ccsha1_vng_intel_SupplementalSSE3_di; 31*fdd8201dSApple OSS Distributions #endif 32*fdd8201dSApple OSS Distributions 33*fdd8201dSApple OSS Distributions #if CCSHA1_VNG_ARM 34*fdd8201dSApple OSS Distributions extern const struct ccdigest_info ccsha1_vng_arm_di; 35*fdd8201dSApple OSS Distributions #endif 36*fdd8201dSApple OSS Distributions 37*fdd8201dSApple OSS Distributions #define ccoid_sha1 ((unsigned char *)"\x06\x05\x2b\x0e\x03\x02\x1a") 38*fdd8201dSApple OSS Distributions #define ccoid_sha1_len 7 39*fdd8201dSApple OSS Distributions 40*fdd8201dSApple OSS Distributions #endif /* _CORECRYPTO_CCSHA1_H_ */ 41