Searched refs:ecb (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/EXTERNAL_HEADERS/corecrypto/
H A Dccmode_factory.h16 /* For CBC, direction of underlying ecb is the same as the cbc direction */
22 const struct ccmode_ecb *ecb=cc##_cipher_##_ecb_##_dir_##_mode(); \
23 ccmode_factory_cbc_##_dir_(&cbc_##_cipher_##_##_dir_, ecb); \
27 /* For CTR, only one direction, underlying ecb is always encrypt */
33 const struct ccmode_ecb *ecb=cc##_cipher_##_ecb_encrypt_mode(); \
34 ccmode_factory_ctr_crypt(&ctr_##_cipher_, ecb); \
44 const struct ccmode_ecb *ecb=cc##_cipher_##_ecb_encrypt_mode(); \
45 ccmode_factory_ofb_crypt(&ofb_##_cipher_, ecb); \
50 /* For CFB, the underlying ecb operation is encrypt for both directions */
56 const struct ccmode_ecb *ecb
119 const struct ccmode_ecb *ecb; member in struct:_ccmode_cbc_key
146 ccmode_factory_cbc_decrypt(struct ccmode_cbc *cbc, const struct ccmode_ecb *ecb) argument
157 ccmode_factory_cbc_encrypt(struct ccmode_cbc *cbc, const struct ccmode_ecb *ecb) argument
173 const struct ccmode_ecb *ecb; member in struct:_ccmode_cfb_key
201 ccmode_factory_cfb_decrypt(struct ccmode_cfb *cfb, const struct ccmode_ecb *ecb) argument
212 ccmode_factory_cfb_encrypt(struct ccmode_cfb *cfb, const struct ccmode_ecb *ecb) argument
228 const struct ccmode_ecb *ecb; member in struct:_ccmode_cfb8_key
255 ccmode_factory_cfb8_decrypt(struct ccmode_cfb8 *cfb8, const struct ccmode_ecb *ecb) argument
266 ccmode_factory_cfb8_encrypt(struct ccmode_cfb8 *cfb8, const struct ccmode_ecb *ecb) argument
279 const struct ccmode_ecb *ecb; member in struct:_ccmode_ctr_key
298 ccmode_factory_ctr_crypt(struct ccmode_ctr *ctr, const struct ccmode_ecb *ecb) argument
341 const struct ccmode_ecb *ecb; member in struct:_ccmode_gcm_key
417 const struct ccmode_ecb *ecb; member in struct:_ccmode_ofb_key
436 ccmode_factory_ofb_crypt(struct ccmode_ofb *ofb, const struct ccmode_ecb *ecb) argument
458 const struct ccmode_ecb *ecb; member in struct:_ccmode_omac_key
486 ccmode_factory_omac_decrypt(struct ccmode_omac *omac, const struct ccmode_ecb *ecb) argument
497 ccmode_factory_omac_encrypt(struct ccmode_omac *omac, const struct ccmode_ecb *ecb) argument
514 const struct ccmode_ecb *ecb; member in struct:_ccmode_xts_key
552 ccmode_factory_xts_decrypt(struct ccmode_xts *xts, const struct ccmode_ecb *ecb, const struct ccmode_ecb *ecb_encrypt) argument
564 ccmode_factory_xts_encrypt(struct ccmode_xts *xts, const struct ccmode_ecb *ecb, const struct ccmode_ecb *ecb_encrypt) argument
[all...]
H A Dccmode_impl.h23 void (*init)(const struct ccmode_ecb *ecb, ccecb_ctx *ctx,
25 void (*ecb)(const ccecb_ctx *ctx, unsigned long nblocks, const void *in, member in struct:ccmode_ecb
H A Dccmode.h18 /* Declare a ecb key named _name_. Pass the size field of a struct ccmode_ecb
43 mode->ecb(ctx, numBlocks, in, out);
53 mode->ecb(ctx, numBlocks, in, out);
315 functions. Also note that xts only works for ecb modes with a block_size
/darwin-on-arm/xnu/libkern/crypto/
H A Dcorecrypto_des.c57 const struct ccmode_ecb *ecb = enc ? g_crypto_funcs->ccdes_ecb_encrypt : g_crypto_funcs->ccdes_ecb_decrypt; local
60 ecb->ecb(ctx, 1, in, out);
85 const struct ccmode_ecb *ecb = enc ? g_crypto_funcs->cctdes_ecb_encrypt : g_crypto_funcs->cctdes_ecb_decrypt; local
88 ecb->ecb(ctx, 1, in, out);
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c6067 dtrace_action_breakpoint(dtrace_ecb_t *ecb)
6069 dtrace_probe_t *probe = ecb->dte_probe;
6074 char *ecbmsg = " (ecb ";
6077 const char *ecbmsg = " (ecb ";
6080 uintptr_t val = (uintptr_t)ecb;
6134 dtrace_action_panic(dtrace_ecb_t *ecb)
6136 dtrace_probe_t *probe = ecb->dte_probe;
6162 panic("dtrace: panic action at probe %s:%s:%s:%s (ecb %p)",
6164 probe->dtpr_func, probe->dtpr_name, (void *)ecb);
6438 dtrace_ecb_t *ecb;
[all...]

Completed in 42 milliseconds