]> git.saurik.com Git - apple/xnu.git/blame - EXTERNAL_HEADERS/corecrypto/ccaes.h
xnu-3789.1.32.tar.gz
[apple/xnu.git] / EXTERNAL_HEADERS / corecrypto / ccaes.h
CommitLineData
316670eb
A
1/*
2 * ccaes.h
3 * corecrypto
4 *
3e170ce0
A
5 * Created on 12/10/2010
6 *
7 * Copyright (c) 2010,2011,2012,2013,2015 Apple Inc. All rights reserved.
316670eb
A
8 *
9 */
10
11#ifndef _CORECRYPTO_CCAES_H_
12#define _CORECRYPTO_CCAES_H_
13
14#include <corecrypto/cc_config.h>
15#include <corecrypto/ccmode.h>
16
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
21
22extern const struct ccmode_ecb ccaes_ltc_ecb_decrypt_mode;
23extern const struct ccmode_ecb ccaes_ltc_ecb_encrypt_mode;
24
25extern const struct ccmode_cbc ccaes_gladman_cbc_encrypt_mode;
26extern const struct ccmode_cbc ccaes_gladman_cbc_decrypt_mode;
27
39037602 28#if CCAES_ARM_ASM
316670eb
A
29extern const struct ccmode_ecb ccaes_arm_ecb_encrypt_mode;
30extern const struct ccmode_ecb ccaes_arm_ecb_decrypt_mode;
31
32extern const struct ccmode_cbc ccaes_arm_cbc_encrypt_mode;
33extern const struct ccmode_cbc ccaes_arm_cbc_decrypt_mode;
3e170ce0
A
34
35extern const struct ccmode_xts ccaes_arm_xts_encrypt_mode;
36extern const struct ccmode_xts ccaes_arm_xts_decrypt_mode;
37
38extern const struct ccmode_cfb ccaes_arm_cfb_encrypt_mode;
39extern const struct ccmode_cfb ccaes_arm_cfb_decrypt_mode;
40
41extern const struct ccmode_ofb ccaes_arm_ofb_crypt_mode;
42
316670eb
A
43#endif
44
fe8ab488
A
45#if CCAES_MUX
46extern const struct ccmode_cbc ccaes_ios_hardware_cbc_encrypt_mode;
47extern const struct ccmode_cbc ccaes_ios_hardware_cbc_decrypt_mode;
48
49extern const struct ccmode_cbc *ccaes_ios_mux_cbc_encrypt_mode(void);
50extern const struct ccmode_cbc *ccaes_ios_mux_cbc_decrypt_mode(void);
51#endif
52
39037602 53#if CCAES_INTEL_ASM
316670eb
A
54//extern const struct ccmode_ecb ccaes_intel_ecb_encrypt_mode;
55//extern const struct ccmode_ecb ccaes_intel_ecb_decrypt_mode;
56
57extern const struct ccmode_ecb ccaes_intel_ecb_encrypt_opt_mode;
58extern const struct ccmode_ecb ccaes_intel_ecb_encrypt_aesni_mode;
59
60extern const struct ccmode_ecb ccaes_intel_ecb_decrypt_opt_mode;
61extern const struct ccmode_ecb ccaes_intel_ecb_decrypt_aesni_mode;
62
63//extern const struct ccmode_cbc ccaes_intel_cbc_encrypt_mode;
64//extern const struct ccmode_cbc ccaes_intel_cbc_decrypt_mode;
65
66extern const struct ccmode_cbc ccaes_intel_cbc_encrypt_opt_mode;
67extern const struct ccmode_cbc ccaes_intel_cbc_encrypt_aesni_mode;
68
69extern const struct ccmode_cbc ccaes_intel_cbc_decrypt_opt_mode;
70extern const struct ccmode_cbc ccaes_intel_cbc_decrypt_aesni_mode;
71
72//extern const struct ccmode_xts ccaes_intel_xts_encrypt_mode;
73//extern const struct ccmode_xts ccaes_intel_xts_decrypt_mode;
74
75extern const struct ccmode_xts ccaes_intel_xts_encrypt_opt_mode;
76extern const struct ccmode_xts ccaes_intel_xts_encrypt_aesni_mode;
77
78extern const struct ccmode_xts ccaes_intel_xts_decrypt_opt_mode;
79extern const struct ccmode_xts ccaes_intel_xts_decrypt_aesni_mode;
80#endif
81
82
83/* Implementation Selectors: */
84const struct ccmode_ecb *ccaes_ecb_encrypt_mode(void);
85const struct ccmode_cbc *ccaes_cbc_encrypt_mode(void);
86const struct ccmode_cfb *ccaes_cfb_encrypt_mode(void);
87const struct ccmode_cfb8 *ccaes_cfb8_encrypt_mode(void);
88const struct ccmode_xts *ccaes_xts_encrypt_mode(void);
89const struct ccmode_gcm *ccaes_gcm_encrypt_mode(void);
fe8ab488 90const struct ccmode_ccm *ccaes_ccm_encrypt_mode(void);
316670eb
A
91
92const struct ccmode_ecb *ccaes_ecb_decrypt_mode(void);
93const struct ccmode_cbc *ccaes_cbc_decrypt_mode(void);
94const struct ccmode_cfb *ccaes_cfb_decrypt_mode(void);
95const struct ccmode_cfb8 *ccaes_cfb8_decrypt_mode(void);
96const struct ccmode_xts *ccaes_xts_decrypt_mode(void);
97const struct ccmode_gcm *ccaes_gcm_decrypt_mode(void);
fe8ab488 98const struct ccmode_ccm *ccaes_ccm_decrypt_mode(void);
316670eb
A
99
100const struct ccmode_ctr *ccaes_ctr_crypt_mode(void);
101const struct ccmode_ofb *ccaes_ofb_crypt_mode(void);
102
39037602
A
103const struct ccmode_siv *ccaes_siv_encrypt_mode(void);
104const struct ccmode_siv *ccaes_siv_decrypt_mode(void);
105
316670eb 106#endif /* _CORECRYPTO_CCAES_H_ */