| /src/crypto/external/bsd/openssh/dist/ |
| chacha.h | 16 struct chacha_ctx { struct 26 void chacha_keysetup(struct chacha_ctx *x, const u_char *k, u_int kbits) 28 void chacha_ivsetup(struct chacha_ctx *x, const u_char *iv, const u_char *ctr) 31 void chacha_encrypt_bytes(struct chacha_ctx *x, const u_char *m,
|
| chacha.c | 17 typedef struct chacha_ctx chacha_ctx; typedef in typeref:struct:chacha_ctx 57 chacha_keysetup(chacha_ctx *x,const u8 *k,u32 kbits) 82 chacha_ivsetup(chacha_ctx *x, const u8 *iv, const u8 *counter) 91 chacha_encrypt_bytes(chacha_ctx *x,const u8 *m,u8 *c,u32 bytes)
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/dolbeau/ |
| chacha20_dolbeau-avx2.c | 32 typedef struct chacha_ctx { struct 34 } chacha_ctx; typedef in typeref:struct:chacha_ctx 37 chacha_keysetup(chacha_ctx *ctx, const uint8_t *k) 54 chacha_ivsetup(chacha_ctx *ctx, const uint8_t *iv, const uint8_t *counter) 63 chacha_ietf_ivsetup(chacha_ctx *ctx, const uint8_t *iv, const uint8_t *counter) 72 chacha20_encrypt_bytes(chacha_ctx *ctx, const uint8_t *m, uint8_t *c, 93 struct chacha_ctx ctx; 112 struct chacha_ctx ctx; 132 struct chacha_ctx ctx; 157 struct chacha_ctx ctx [all...] |
| chacha20_dolbeau-ssse3.c | 27 typedef struct chacha_ctx { struct 29 } chacha_ctx; typedef in typeref:struct:chacha_ctx 32 chacha_keysetup(chacha_ctx *ctx, const uint8_t *k) 49 chacha_ivsetup(chacha_ctx *ctx, const uint8_t *iv, const uint8_t *counter) 58 chacha_ietf_ivsetup(chacha_ctx *ctx, const uint8_t *iv, const uint8_t *counter) 67 chacha20_encrypt_bytes(chacha_ctx *ctx, const uint8_t *m, uint8_t *c, 87 struct chacha_ctx ctx; 106 struct chacha_ctx ctx; 126 struct chacha_ctx ctx; 151 struct chacha_ctx ctx [all...] |
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/ref/ |
| chacha20_ref.c | 20 struct chacha_ctx { struct 24 typedef struct chacha_ctx chacha_ctx; typedef in typeref:struct:chacha_ctx 46 chacha_keysetup(chacha_ctx *ctx, const uint8_t *k) 63 chacha_ivsetup(chacha_ctx *ctx, const uint8_t *iv, const uint8_t *counter) 72 chacha_ietf_ivsetup(chacha_ctx *ctx, const uint8_t *iv, const uint8_t *counter) 81 chacha20_encrypt_bytes(chacha_ctx *ctx, const uint8_t *m, uint8_t *c, 230 struct chacha_ctx ctx; 249 struct chacha_ctx ctx; 269 struct chacha_ctx ctx [all...] |
| /src/external/bsd/unbound/dist/compat/ |
| chacha_private.h | 15 } chacha_ctx; typedef in typeref:struct:__anon8214 55 chacha_keysetup(chacha_ctx *x,const u8 *k,u32 kbits,u32 ATTR_UNUSED(ivbits)) 80 chacha_ivsetup(chacha_ctx *x,const u8 *iv) 89 chacha_encrypt_bytes(chacha_ctx *x,const u8 *m,u8 *c,u32 bytes)
|