| /xnu-8020.101.4/EXTERNAL_HEADERS/corecrypto/ |
| H A D | ccmode.h | 24 #define ccecb_ctx_decl(_size_, _name_) cc_ctx_decl(ccecb_ctx, _size_, _name_) argument 25 #define ccecb_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument 66 #define cccbc_ctx_decl(_size_, _name_) cc_ctx_decl(cccbc_ctx, _size_, _name_) argument 67 #define cccbc_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument 71 #define cccbc_iv_decl(_size_, _name_) cc_ctx_decl(cccbc_iv, _size_, _name_) argument 72 #define cccbc_iv_clear(_size_, _name_) cc_clear(_size_, _name_) argument 124 #define cccfb_ctx_decl(_size_, _name_) cc_ctx_decl(cccfb_ctx, _size_, _name_) argument 125 #define cccfb_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument 169 #define cccfb8_ctx_decl(_size_, _name_) cc_ctx_decl(cccfb8_ctx, _size_, _name_) argument 170 #define cccfb8_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument [all …]
|
| H A D | cc.h | 86 #define cc_pad_align(_size_) ((_size_ + CC_MAX_ALIGNMENT - 1) & (~(CC_MAX_ALIGNMENT - 1))) argument 89 #define cc_ctx_n(_type_, _size_) ((_size_ + sizeof(_type_) - 1) / sizeof(_type_)) argument 92 #define cc_ctx_sizeof(_type_, _size_) sizeof(_type_[cc_ctx_n(_type_, _size_)]) argument 102 #define cc_ctx_decl(_type_, _size_, _name_) _type_ * _name_ = (_type_ *) _alloca(sizeof(_type_) * … argument 103 #define cc_ctx_decl_field(_type_, _size_, _name_) _type_ _name_ [cc_ctx_n(_type_, _size_)] argument 106 #define cc_ctx_decl(_type_, _size_, _name_) \ argument 109 _type_ _name_ [cc_ctx_n(_type_, _size_)] \ 131 #define cc_copy(_size_, _dst_, _src_) memcpy(_dst_, _src_, _size_) argument
|
| H A D | ccrsa.h | 55 #define ccrsa_pub_ctx_size(_size_) (sizeof(struct cczp) + CCN_UNIT_SIZE + 3 * (_size_)) argument 56 #define ccrsa_priv_ctx_size(_size_) ((sizeof(struct cczp) + CCN_UNIT_SIZE) * 2 + 7 * ccn_sizeof(cc… argument 57 #define ccrsa_full_ctx_size(_size_) (ccrsa_pub_ctx_size(_size_) + _size_ + ccrsa_priv_ctx_size(_si… argument 63 #define ccrsa_full_ctx_decl(_size_, _name_) cc_ctx_decl(struct ccrsa_full_ctx, ccrsa_full_ctx_siz… argument 64 #define ccrsa_full_ctx_clear(_size_, _name_) cc_clear(ccrsa_full_ctx_size(_size_), _name_) argument 65 #define ccrsa_pub_ctx_decl(_size_, _name_) cc_ctx_decl(struct ccrsa_pub_ctx, ccrsa_pub_ctx_size(… argument 66 #define ccrsa_pub_ctx_clear(_size_, _name_) cc_clear(ccrsa_pub_ctx_size(_size_), _name_) argument
|
| H A D | ccmode_siv_hmac.h | 50 #define ccsiv_hmac_ctx_decl(_size_, _name_) cc_ctx_decl(ccsiv_hmac_ctx, _size_, _name_) argument 51 #define ccsiv_hmac_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument
|
| H A D | ccmode_siv.h | 42 #define ccsiv_ctx_decl(_size_, _name_) cc_ctx_decl(ccsiv_ctx, _size_, _name_) argument 43 #define ccsiv_ctx_clear(_size_, _name_) cc_clear(_size_, _name_) argument
|
| H A D | cczp.h | 57 #define cczp_size(_size_) (sizeof(struct cczp) + ccn_sizeof_n(1) + 2 * (_size_)) argument
|
| H A D | ccn.h | 89 #define ccn_nof_size(_size_) (((_size_) + CCN_UNIT_SIZE - 1) / CCN_UNIT_SIZE) argument 97 #define ccn_bitsof_size(_size_) ((_size_) * 8) argument 100 #define ccn_sizeof_size(_size_) ccn_sizeof_n(ccn_nof_size(_size_)) argument
|