5 * Created on 12/10/2010
7 * Copyright (c) 2010,2011,2012,2013,2015 Apple Inc. All rights reserved.
11 #ifndef _CORECRYPTO_CCAES_H_
12 #define _CORECRYPTO_CCAES_H_
14 #include <corecrypto/cc_config.h>
15 #include <corecrypto/ccmode.h>
17 #define CCAES_BLOCK_SIZE 16
18 #define CCAES_KEY_SIZE_128 16
19 #define CCAES_KEY_SIZE_192 24
20 #define CCAES_KEY_SIZE_256 32
22 #define CCAES_CTR_MAX_PARALLEL_NBLOCKS 8
24 extern const struct ccmode_ecb ccaes_ltc_ecb_decrypt_mode
;
25 extern const struct ccmode_ecb ccaes_ltc_ecb_encrypt_mode
;
27 extern const struct ccmode_cbc ccaes_gladman_cbc_encrypt_mode
;
28 extern const struct ccmode_cbc ccaes_gladman_cbc_decrypt_mode
;
31 extern const struct ccmode_ecb ccaes_arm_ecb_encrypt_mode
;
32 extern const struct ccmode_ecb ccaes_arm_ecb_decrypt_mode
;
34 extern const struct ccmode_cbc ccaes_arm_cbc_encrypt_mode
;
35 extern const struct ccmode_cbc ccaes_arm_cbc_decrypt_mode
;
37 extern const struct ccmode_xts ccaes_arm_xts_encrypt_mode
;
38 extern const struct ccmode_xts ccaes_arm_xts_decrypt_mode
;
40 extern const struct ccmode_cfb ccaes_arm_cfb_encrypt_mode
;
41 extern const struct ccmode_cfb ccaes_arm_cfb_decrypt_mode
;
43 extern const struct ccmode_ofb ccaes_arm_ofb_crypt_mode
;
48 extern const struct ccmode_cbc ccaes_ios_hardware_cbc_encrypt_mode
;
49 extern const struct ccmode_cbc ccaes_ios_hardware_cbc_decrypt_mode
;
51 extern const struct ccmode_ctr ccaes_ios_hardware_ctr_crypt_mode
;
53 extern const struct ccmode_cbc
*ccaes_ios_mux_cbc_encrypt_mode(void);
54 extern const struct ccmode_cbc
*ccaes_ios_mux_cbc_decrypt_mode(void);
56 extern const struct ccmode_ctr
*ccaes_ios_mux_ctr_crypt_mode(void);
61 //extern const struct ccmode_ecb ccaes_intel_ecb_encrypt_mode;
62 //extern const struct ccmode_ecb ccaes_intel_ecb_decrypt_mode;
64 extern const struct ccmode_ecb ccaes_intel_ecb_encrypt_opt_mode
;
65 extern const struct ccmode_ecb ccaes_intel_ecb_encrypt_aesni_mode
;
67 extern const struct ccmode_ecb ccaes_intel_ecb_decrypt_opt_mode
;
68 extern const struct ccmode_ecb ccaes_intel_ecb_decrypt_aesni_mode
;
70 //extern const struct ccmode_cbc ccaes_intel_cbc_encrypt_mode;
71 //extern const struct ccmode_cbc ccaes_intel_cbc_decrypt_mode;
73 extern const struct ccmode_cbc ccaes_intel_cbc_encrypt_opt_mode
;
74 extern const struct ccmode_cbc ccaes_intel_cbc_encrypt_aesni_mode
;
76 extern const struct ccmode_cbc ccaes_intel_cbc_decrypt_opt_mode
;
77 extern const struct ccmode_cbc ccaes_intel_cbc_decrypt_aesni_mode
;
79 //extern const struct ccmode_xts ccaes_intel_xts_encrypt_mode;
80 //extern const struct ccmode_xts ccaes_intel_xts_decrypt_mode;
82 extern const struct ccmode_xts ccaes_intel_xts_encrypt_opt_mode
;
83 extern const struct ccmode_xts ccaes_intel_xts_encrypt_aesni_mode
;
85 extern const struct ccmode_xts ccaes_intel_xts_decrypt_opt_mode
;
86 extern const struct ccmode_xts ccaes_intel_xts_decrypt_aesni_mode
;
90 /* Implementation Selectors: */
91 const struct ccmode_ecb
*ccaes_ecb_encrypt_mode(void);
92 const struct ccmode_cbc
*ccaes_cbc_encrypt_mode(void);
93 const struct ccmode_cfb
*ccaes_cfb_encrypt_mode(void);
94 const struct ccmode_cfb8
*ccaes_cfb8_encrypt_mode(void);
95 const struct ccmode_xts
*ccaes_xts_encrypt_mode(void);
96 const struct ccmode_gcm
*ccaes_gcm_encrypt_mode(void);
97 const struct ccmode_ccm
*ccaes_ccm_encrypt_mode(void);
99 const struct ccmode_ecb
*ccaes_ecb_decrypt_mode(void);
100 const struct ccmode_cbc
*ccaes_cbc_decrypt_mode(void);
101 const struct ccmode_cfb
*ccaes_cfb_decrypt_mode(void);
102 const struct ccmode_cfb8
*ccaes_cfb8_decrypt_mode(void);
103 const struct ccmode_xts
*ccaes_xts_decrypt_mode(void);
104 const struct ccmode_gcm
*ccaes_gcm_decrypt_mode(void);
105 const struct ccmode_ccm
*ccaes_ccm_decrypt_mode(void);
107 const struct ccmode_ctr
*ccaes_ctr_crypt_mode(void);
108 const struct ccmode_ofb
*ccaes_ofb_crypt_mode(void);
110 const struct ccmode_siv
*ccaes_siv_encrypt_mode(void);
111 const struct ccmode_siv
*ccaes_siv_decrypt_mode(void);
113 #endif /* _CORECRYPTO_CCAES_H_ */