Home
last modified time | relevance | path

Searched refs:vmacctx (Results 1 – 25 of 42) sorted by relevance

12

/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/providers/implementations/macs/
H A Dcmac_prov.c69 static void cmac_free(void *vmacctx) in cmac_free() argument
71 struct cmac_data_st *macctx = vmacctx; in cmac_free()
99 static size_t cmac_size(void *vmacctx) in cmac_size() argument
101 struct cmac_data_st *macctx = vmacctx; in cmac_size()
116 static int cmac_init(void *vmacctx, const unsigned char *key, in cmac_init() argument
119 struct cmac_data_st *macctx = vmacctx; in cmac_init()
131 struct cmac_data_st *macctx = vmacctx; in cmac_update()
139 struct cmac_data_st *macctx = vmacctx; in cmac_final()
163 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
167 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
[all …]
H A Dsiphash_prov.c67 static void siphash_free(void *vmacctx) in siphash_free() argument
69 OPENSSL_free(vmacctx); in siphash_free()
87 static size_t siphash_size(void *vmacctx) in siphash_size() argument
89 struct siphash_data_st *ctx = vmacctx; in siphash_size()
105 struct siphash_data_st *ctx = vmacctx; in siphash_init()
117 static int siphash_update(void *vmacctx, const unsigned char *data, in siphash_update() argument
120 struct siphash_data_st *ctx = vmacctx; in siphash_update()
132 struct siphash_data_st *ctx = vmacctx; in siphash_final()
157 struct siphash_data_st *ctx = vmacctx; in siphash_get_ctx_params()
161 && !OSSL_PARAM_set_size_t(p, siphash_size(vmacctx))) in siphash_get_ctx_params()
[all …]
H A Dblake2_mac_impl.c73 static void blake2_mac_free(void *vmacctx) in blake2_mac_free() argument
75 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_free()
83 static size_t blake2_mac_size(void *vmacctx) in blake2_mac_size() argument
85 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_size()
105 static int blake2_mac_init(void *vmacctx, const unsigned char *key, in blake2_mac_init() argument
108 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_init()
123 static int blake2_mac_update(void *vmacctx, in blake2_mac_update() argument
126 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_update()
134 static int blake2_mac_final(void *vmacctx, in blake2_mac_final() argument
138 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_final()
[all …]
H A Dpoly1305_prov.c55 static void poly1305_free(void *vmacctx) in poly1305_free() argument
57 OPENSSL_free(vmacctx); in poly1305_free()
91 static int poly1305_init(void *vmacctx, const unsigned char *key, in poly1305_init() argument
94 struct poly1305_data_st *ctx = vmacctx; in poly1305_init()
104 static int poly1305_update(void *vmacctx, const unsigned char *data, in poly1305_update() argument
107 struct poly1305_data_st *ctx = vmacctx; in poly1305_update()
117 static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl, in poly1305_final() argument
120 struct poly1305_data_st *ctx = vmacctx; in poly1305_final()
158 static int poly1305_set_ctx_params(void *vmacctx, const OSSL_PARAM *params) in poly1305_set_ctx_params() argument
160 struct poly1305_data_st *ctx = vmacctx; in poly1305_set_ctx_params()
H A Dgmac_prov.c47 static void gmac_free(void *vmacctx) in gmac_free() argument
49 struct gmac_data_st *macctx = vmacctx; in gmac_free()
114 static int gmac_init(void *vmacctx, const unsigned char *key, in gmac_init() argument
117 struct gmac_data_st *macctx = vmacctx; in gmac_init()
126 static int gmac_update(void *vmacctx, const unsigned char *data, in gmac_update() argument
129 struct gmac_data_st *macctx = vmacctx; in gmac_update()
145 static int gmac_final(void *vmacctx, unsigned char *out, size_t *outl, in gmac_final() argument
149 struct gmac_data_st *macctx = vmacctx; in gmac_final()
203 static int gmac_set_ctx_params(void *vmacctx, const OSSL_PARAM params[]) in gmac_set_ctx_params() argument
205 struct gmac_data_st *macctx = vmacctx; in gmac_set_ctx_params()
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/providers/implementations/macs/
H A Dcmac_prov.c69 static void cmac_free(void *vmacctx) in cmac_free() argument
71 struct cmac_data_st *macctx = vmacctx; in cmac_free()
99 static size_t cmac_size(void *vmacctx) in cmac_size() argument
101 struct cmac_data_st *macctx = vmacctx; in cmac_size()
116 static int cmac_init(void *vmacctx, const unsigned char *key, in cmac_init() argument
119 struct cmac_data_st *macctx = vmacctx; in cmac_init()
131 struct cmac_data_st *macctx = vmacctx; in cmac_update()
139 struct cmac_data_st *macctx = vmacctx; in cmac_final()
163 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
167 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
[all …]
H A Dsiphash_prov.c67 static void siphash_free(void *vmacctx) in siphash_free() argument
69 OPENSSL_free(vmacctx); in siphash_free()
87 static size_t siphash_size(void *vmacctx) in siphash_size() argument
89 struct siphash_data_st *ctx = vmacctx; in siphash_size()
105 struct siphash_data_st *ctx = vmacctx; in siphash_init()
117 static int siphash_update(void *vmacctx, const unsigned char *data, in siphash_update() argument
120 struct siphash_data_st *ctx = vmacctx; in siphash_update()
132 struct siphash_data_st *ctx = vmacctx; in siphash_final()
157 struct siphash_data_st *ctx = vmacctx; in siphash_get_ctx_params()
161 && !OSSL_PARAM_set_size_t(p, siphash_size(vmacctx))) in siphash_get_ctx_params()
[all …]
H A Dblake2_mac_impl.c73 static void blake2_mac_free(void *vmacctx) in blake2_mac_free() argument
75 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_free()
83 static size_t blake2_mac_size(void *vmacctx) in blake2_mac_size() argument
85 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_size()
105 static int blake2_mac_init(void *vmacctx, const unsigned char *key, in blake2_mac_init() argument
108 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_init()
123 static int blake2_mac_update(void *vmacctx, in blake2_mac_update() argument
126 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_update()
134 static int blake2_mac_final(void *vmacctx, in blake2_mac_final() argument
138 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_final()
[all …]
H A Dpoly1305_prov.c55 static void poly1305_free(void *vmacctx) in poly1305_free() argument
57 OPENSSL_free(vmacctx); in poly1305_free()
91 static int poly1305_init(void *vmacctx, const unsigned char *key, in poly1305_init() argument
94 struct poly1305_data_st *ctx = vmacctx; in poly1305_init()
104 static int poly1305_update(void *vmacctx, const unsigned char *data, in poly1305_update() argument
107 struct poly1305_data_st *ctx = vmacctx; in poly1305_update()
117 static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl, in poly1305_final() argument
120 struct poly1305_data_st *ctx = vmacctx; in poly1305_final()
158 static int poly1305_set_ctx_params(void *vmacctx, const OSSL_PARAM *params) in poly1305_set_ctx_params() argument
160 struct poly1305_data_st *ctx = vmacctx; in poly1305_set_ctx_params()
/dports/security/acmed/acmed-0.18.0/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/providers/implementations/macs/
H A Dcmac_prov.c69 static void cmac_free(void *vmacctx) in cmac_free() argument
71 struct cmac_data_st *macctx = vmacctx; in cmac_free()
99 static size_t cmac_size(void *vmacctx) in cmac_size() argument
101 struct cmac_data_st *macctx = vmacctx; in cmac_size()
116 static int cmac_init(void *vmacctx, const unsigned char *key, in cmac_init() argument
119 struct cmac_data_st *macctx = vmacctx; in cmac_init()
131 struct cmac_data_st *macctx = vmacctx; in cmac_update()
139 struct cmac_data_st *macctx = vmacctx; in cmac_final()
163 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
167 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
[all …]
H A Dsiphash_prov.c67 static void siphash_free(void *vmacctx) in siphash_free() argument
69 OPENSSL_free(vmacctx); in siphash_free()
87 static size_t siphash_size(void *vmacctx) in siphash_size() argument
89 struct siphash_data_st *ctx = vmacctx; in siphash_size()
105 struct siphash_data_st *ctx = vmacctx; in siphash_init()
117 static int siphash_update(void *vmacctx, const unsigned char *data, in siphash_update() argument
120 struct siphash_data_st *ctx = vmacctx; in siphash_update()
132 struct siphash_data_st *ctx = vmacctx; in siphash_final()
157 struct siphash_data_st *ctx = vmacctx; in siphash_get_ctx_params()
161 && !OSSL_PARAM_set_size_t(p, siphash_size(vmacctx))) in siphash_get_ctx_params()
[all …]
H A Dblake2_mac_impl.c73 static void blake2_mac_free(void *vmacctx) in blake2_mac_free() argument
75 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_free()
83 static size_t blake2_mac_size(void *vmacctx) in blake2_mac_size() argument
85 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_size()
105 static int blake2_mac_init(void *vmacctx, const unsigned char *key, in blake2_mac_init() argument
108 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_init()
123 static int blake2_mac_update(void *vmacctx, in blake2_mac_update() argument
126 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_update()
134 static int blake2_mac_final(void *vmacctx, in blake2_mac_final() argument
138 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_final()
[all …]
H A Dpoly1305_prov.c55 static void poly1305_free(void *vmacctx) in poly1305_free() argument
57 OPENSSL_free(vmacctx); in poly1305_free()
91 static int poly1305_init(void *vmacctx, const unsigned char *key, in poly1305_init() argument
94 struct poly1305_data_st *ctx = vmacctx; in poly1305_init()
104 static int poly1305_update(void *vmacctx, const unsigned char *data, in poly1305_update() argument
107 struct poly1305_data_st *ctx = vmacctx; in poly1305_update()
117 static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl, in poly1305_final() argument
120 struct poly1305_data_st *ctx = vmacctx; in poly1305_final()
158 static int poly1305_set_ctx_params(void *vmacctx, const OSSL_PARAM *params) in poly1305_set_ctx_params() argument
160 struct poly1305_data_st *ctx = vmacctx; in poly1305_set_ctx_params()
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/providers/implementations/macs/
H A Dcmac_prov.c69 static void cmac_free(void *vmacctx) in cmac_free() argument
71 struct cmac_data_st *macctx = vmacctx; in cmac_free()
99 static size_t cmac_size(void *vmacctx) in cmac_size() argument
101 struct cmac_data_st *macctx = vmacctx; in cmac_size()
116 static int cmac_init(void *vmacctx, const unsigned char *key, in cmac_init() argument
119 struct cmac_data_st *macctx = vmacctx; in cmac_init()
131 struct cmac_data_st *macctx = vmacctx; in cmac_update()
139 struct cmac_data_st *macctx = vmacctx; in cmac_final()
163 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
167 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
[all …]
H A Dsiphash_prov.c67 static void siphash_free(void *vmacctx) in siphash_free() argument
69 OPENSSL_free(vmacctx); in siphash_free()
87 static size_t siphash_size(void *vmacctx) in siphash_size() argument
89 struct siphash_data_st *ctx = vmacctx; in siphash_size()
105 struct siphash_data_st *ctx = vmacctx; in siphash_init()
117 static int siphash_update(void *vmacctx, const unsigned char *data, in siphash_update() argument
120 struct siphash_data_st *ctx = vmacctx; in siphash_update()
132 struct siphash_data_st *ctx = vmacctx; in siphash_final()
157 struct siphash_data_st *ctx = vmacctx; in siphash_get_ctx_params()
161 && !OSSL_PARAM_set_size_t(p, siphash_size(vmacctx))) in siphash_get_ctx_params()
[all …]
H A Dblake2_mac_impl.c73 static void blake2_mac_free(void *vmacctx) in blake2_mac_free() argument
75 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_free()
83 static size_t blake2_mac_size(void *vmacctx) in blake2_mac_size() argument
85 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_size()
105 static int blake2_mac_init(void *vmacctx, const unsigned char *key, in blake2_mac_init() argument
108 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_init()
123 static int blake2_mac_update(void *vmacctx, in blake2_mac_update() argument
126 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_update()
134 static int blake2_mac_final(void *vmacctx, in blake2_mac_final() argument
138 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_final()
[all …]
H A Dpoly1305_prov.c55 static void poly1305_free(void *vmacctx) in poly1305_free() argument
57 OPENSSL_free(vmacctx); in poly1305_free()
91 static int poly1305_init(void *vmacctx, const unsigned char *key, in poly1305_init() argument
94 struct poly1305_data_st *ctx = vmacctx; in poly1305_init()
104 static int poly1305_update(void *vmacctx, const unsigned char *data, in poly1305_update() argument
107 struct poly1305_data_st *ctx = vmacctx; in poly1305_update()
117 static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl, in poly1305_final() argument
120 struct poly1305_data_st *ctx = vmacctx; in poly1305_final()
158 static int poly1305_set_ctx_params(void *vmacctx, const OSSL_PARAM *params) in poly1305_set_ctx_params() argument
160 struct poly1305_data_st *ctx = vmacctx; in poly1305_set_ctx_params()
/dports/security/openssl-devel/openssl-3.0.2/providers/implementations/macs/
H A Dcmac_prov.c69 static void cmac_free(void *vmacctx) in cmac_free() argument
71 struct cmac_data_st *macctx = vmacctx; in cmac_free()
99 static size_t cmac_size(void *vmacctx) in cmac_size() argument
101 struct cmac_data_st *macctx = vmacctx; in cmac_size()
116 static int cmac_init(void *vmacctx, const unsigned char *key, in cmac_init() argument
119 struct cmac_data_st *macctx = vmacctx; in cmac_init()
131 struct cmac_data_st *macctx = vmacctx; in cmac_update()
139 struct cmac_data_st *macctx = vmacctx; in cmac_final()
163 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
167 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
[all …]
H A Dsiphash_prov.c67 static void siphash_free(void *vmacctx) in siphash_free() argument
69 OPENSSL_free(vmacctx); in siphash_free()
87 static size_t siphash_size(void *vmacctx) in siphash_size() argument
89 struct siphash_data_st *ctx = vmacctx; in siphash_size()
105 struct siphash_data_st *ctx = vmacctx; in siphash_init()
117 static int siphash_update(void *vmacctx, const unsigned char *data, in siphash_update() argument
120 struct siphash_data_st *ctx = vmacctx; in siphash_update()
132 struct siphash_data_st *ctx = vmacctx; in siphash_final()
157 struct siphash_data_st *ctx = vmacctx; in siphash_get_ctx_params()
161 && !OSSL_PARAM_set_size_t(p, siphash_size(vmacctx))) in siphash_get_ctx_params()
[all …]
H A Dblake2_mac_impl.c73 static void blake2_mac_free(void *vmacctx) in blake2_mac_free() argument
75 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_free()
83 static size_t blake2_mac_size(void *vmacctx) in blake2_mac_size() argument
85 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_size()
105 static int blake2_mac_init(void *vmacctx, const unsigned char *key, in blake2_mac_init() argument
108 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_init()
123 static int blake2_mac_update(void *vmacctx, in blake2_mac_update() argument
126 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_update()
134 static int blake2_mac_final(void *vmacctx, in blake2_mac_final() argument
138 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_final()
[all …]
H A Dpoly1305_prov.c55 static void poly1305_free(void *vmacctx) in poly1305_free() argument
57 OPENSSL_free(vmacctx); in poly1305_free()
91 static int poly1305_init(void *vmacctx, const unsigned char *key, in poly1305_init() argument
94 struct poly1305_data_st *ctx = vmacctx; in poly1305_init()
104 static int poly1305_update(void *vmacctx, const unsigned char *data, in poly1305_update() argument
107 struct poly1305_data_st *ctx = vmacctx; in poly1305_update()
117 static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl, in poly1305_final() argument
120 struct poly1305_data_st *ctx = vmacctx; in poly1305_final()
158 static int poly1305_set_ctx_params(void *vmacctx, const OSSL_PARAM *params) in poly1305_set_ctx_params() argument
160 struct poly1305_data_st *ctx = vmacctx; in poly1305_set_ctx_params()
/dports/security/openssl-quictls/openssl-7f2ab56a2b842b8e6fefc7b9d20eb5ff9c6ef151/providers/implementations/macs/
H A Dcmac_prov.c69 static void cmac_free(void *vmacctx) in cmac_free() argument
71 struct cmac_data_st *macctx = vmacctx; in cmac_free()
99 static size_t cmac_size(void *vmacctx) in cmac_size() argument
101 struct cmac_data_st *macctx = vmacctx; in cmac_size()
116 static int cmac_init(void *vmacctx, const unsigned char *key, in cmac_init() argument
119 struct cmac_data_st *macctx = vmacctx; in cmac_init()
131 struct cmac_data_st *macctx = vmacctx; in cmac_update()
139 struct cmac_data_st *macctx = vmacctx; in cmac_final()
163 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
167 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx))) in cmac_get_ctx_params()
[all …]
H A Dsiphash_prov.c67 static void siphash_free(void *vmacctx) in siphash_free() argument
69 OPENSSL_free(vmacctx); in siphash_free()
87 static size_t siphash_size(void *vmacctx) in siphash_size() argument
89 struct siphash_data_st *ctx = vmacctx; in siphash_size()
105 struct siphash_data_st *ctx = vmacctx; in siphash_init()
117 static int siphash_update(void *vmacctx, const unsigned char *data, in siphash_update() argument
120 struct siphash_data_st *ctx = vmacctx; in siphash_update()
132 struct siphash_data_st *ctx = vmacctx; in siphash_final()
157 struct siphash_data_st *ctx = vmacctx; in siphash_get_ctx_params()
161 && !OSSL_PARAM_set_size_t(p, siphash_size(vmacctx))) in siphash_get_ctx_params()
[all …]
H A Dblake2_mac_impl.c73 static void blake2_mac_free(void *vmacctx) in blake2_mac_free() argument
75 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_free()
83 static size_t blake2_mac_size(void *vmacctx) in blake2_mac_size() argument
85 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_size()
105 static int blake2_mac_init(void *vmacctx, const unsigned char *key, in blake2_mac_init() argument
108 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_init()
123 static int blake2_mac_update(void *vmacctx, in blake2_mac_update() argument
126 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_update()
134 static int blake2_mac_final(void *vmacctx, in blake2_mac_final() argument
138 struct blake2_mac_data_st *macctx = vmacctx; in blake2_mac_final()
[all …]
H A Dpoly1305_prov.c55 static void poly1305_free(void *vmacctx) in poly1305_free() argument
57 OPENSSL_free(vmacctx); in poly1305_free()
91 static int poly1305_init(void *vmacctx, const unsigned char *key, in poly1305_init() argument
94 struct poly1305_data_st *ctx = vmacctx; in poly1305_init()
104 static int poly1305_update(void *vmacctx, const unsigned char *data, in poly1305_update() argument
107 struct poly1305_data_st *ctx = vmacctx; in poly1305_update()
117 static int poly1305_final(void *vmacctx, unsigned char *out, size_t *outl, in poly1305_final() argument
120 struct poly1305_data_st *ctx = vmacctx; in poly1305_final()
158 static int poly1305_set_ctx_params(void *vmacctx, const OSSL_PARAM *params) in poly1305_set_ctx_params() argument
160 struct poly1305_data_st *ctx = vmacctx; in poly1305_set_ctx_params()

12