Searched refs:aes_xts_ctx (Results 1 – 10 of 10) sorted by relevance
/openbsd/sys/lib/libsa/ |
H A D | aes_xts.h | 27 struct aes_xts_ctx { struct 33 int aes_xts_setkey(struct aes_xts_ctx *, u_int8_t *, int); argument 34 void aes_xts_crypt(struct aes_xts_ctx *, u_int8_t *, u_int); 35 void aes_xts_encrypt(struct aes_xts_ctx *, u_int8_t *); 36 void aes_xts_decrypt(struct aes_xts_ctx *, u_int8_t *); 37 void aes_xts_zerokey(struct aes_xts_ctx *); 38 void aes_xts_reinit(struct aes_xts_ctx *, u_int8_t *);
|
H A D | aes_xts.c | 26 aes_xts_reinit(struct aes_xts_ctx *ctx, u_int8_t *iv) in aes_xts_reinit() 47 aes_xts_crypt(struct aes_xts_ctx *ctx, u_int8_t *data, u_int do_encrypt) in aes_xts_crypt() 75 aes_xts_encrypt(struct aes_xts_ctx *ctx, u_int8_t *data) in aes_xts_encrypt() 81 aes_xts_decrypt(struct aes_xts_ctx *ctx, u_int8_t *data) in aes_xts_decrypt() 87 aes_xts_setkey(struct aes_xts_ctx *ctx, u_int8_t *key, int len) in aes_xts_setkey() 99 aes_xts_zerokey(struct aes_xts_ctx *ctx) in aes_xts_zerokey() 101 explicit_bzero(ctx, sizeof(struct aes_xts_ctx)); in aes_xts_zerokey()
|
/openbsd/sys/crypto/ |
H A D | xform.c | 115 struct aes_xts_ctx { struct 122 void aes_xts_crypt(struct aes_xts_ctx *, u_int8_t *, u_int); argument 196 sizeof(struct aes_xts_ctx), 469 struct aes_xts_ctx *ctx = (struct aes_xts_ctx *)key; in aes_xts_reinit() 489 aes_xts_crypt(struct aes_xts_ctx *ctx, u_int8_t *data, u_int do_encrypt) in aes_xts_crypt() 519 aes_xts_crypt((struct aes_xts_ctx *)key, data, 1); in aes_xts_encrypt() 525 aes_xts_crypt((struct aes_xts_ctx *)key, data, 0); in aes_xts_decrypt() 531 struct aes_xts_ctx *ctx; in aes_xts_setkey() 536 ctx = (struct aes_xts_ctx *)sched; in aes_xts_setkey()
|
/openbsd/regress/sys/crypto/aesxts/ |
H A D | aes_xts.c | 39 struct aes_xts_ctx { struct 1753 struct aes_xts_ctx ctx; in do_aes_xts()
|
/openbsd/sys/arch/i386/stand/libsa/ |
H A D | softraid_i386.c | 312 struct aes_xts_ctx ctx; in sr_strategy()
|
/openbsd/sys/arch/sparc64/stand/ofwboot/ |
H A D | softraid_sparc64.c | 335 struct aes_xts_ctx ctx; in sr_strategy()
|
/openbsd/sys/arch/amd64/stand/libsa/ |
H A D | softraid_amd64.c | 318 struct aes_xts_ctx ctx; in sr_strategy()
|
/openbsd/sys/arch/arm64/stand/efiboot/ |
H A D | softraid_arm64.c | 312 struct aes_xts_ctx ctx; in sr_strategy()
|
/openbsd/sys/arch/riscv64/stand/efiboot/ |
H A D | softraid_riscv64.c | 312 struct aes_xts_ctx ctx; in sr_strategy()
|
/openbsd/sys/dev/ |
H A D | softraid.c | 5080 struct aes_xts_ctx ctx; in sr_hibernate_io()
|