Home
last modified time | relevance | path

Searched refs:Poly1305_Update (Results 1 – 9 of 9) sorted by relevance

/freebsd/crypto/openssl/test/
H A Dpoly1305_internal_test.c1521 Poly1305_Update(&poly1305, in, inlen); in test_poly1305()
1531 Poly1305_Update(&poly1305, in, 1); in test_poly1305()
1532 Poly1305_Update(&poly1305, in+1, inlen-1); in test_poly1305()
1545 Poly1305_Update(&poly1305, in, half); in test_poly1305()
1546 Poly1305_Update(&poly1305, in+half, inlen-half); in test_poly1305()
1556 Poly1305_Update(&poly1305, in, half); in test_poly1305()
1557 Poly1305_Update(&poly1305, in+half, inlen-half); in test_poly1305()
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_chacha20_poly1305_hw.c198 Poly1305_Update(poly, ctx->tls_aad, POLY1305_BLOCK_SIZE); in chacha20_poly1305_tls_cipher()
206 Poly1305_Update(poly, out, plen); in chacha20_poly1305_tls_cipher()
208 Poly1305_Update(poly, in, plen); in chacha20_poly1305_tls_cipher()
215 Poly1305_Update(poly, zero, tail); in chacha20_poly1305_tls_cipher()
241 Poly1305_Update(poly, tohash, tohash_len); in chacha20_poly1305_tls_cipher()
305 Poly1305_Update(poly, in, inl); in chacha20_poly1305_aead_cipher()
324 Poly1305_Update(poly, out, plen); in chacha20_poly1305_aead_cipher()
329 Poly1305_Update(poly, in, plen); in chacha20_poly1305_aead_cipher()
349 Poly1305_Update(poly, zero, POLY1305_BLOCK_SIZE - rem); in chacha20_poly1305_aead_cipher()
352 Poly1305_Update(poly, (unsigned char *)&ctx->len, in chacha20_poly1305_aead_cipher()
[all …]
/freebsd/crypto/openssl/crypto/evp/
H A De_chacha20_poly1305.c302 Poly1305_Update(POLY1305_ctx(actx), out, plen); in chacha20_poly1305_tls_cipher()
304 Poly1305_Update(POLY1305_ctx(actx), in, plen); in chacha20_poly1305_tls_cipher()
311 Poly1305_Update(POLY1305_ctx(actx), zero, tail); in chacha20_poly1305_tls_cipher()
341 Poly1305_Update(POLY1305_ctx(actx), tohash, tohash_len); in chacha20_poly1305_tls_cipher()
384 Poly1305_Update(POLY1305_ctx(actx), actx->tls_aad, in chacha20_poly1305_cipher()
393 Poly1305_Update(POLY1305_ctx(actx), in, len); in chacha20_poly1305_cipher()
400 Poly1305_Update(POLY1305_ctx(actx), zero, in chacha20_poly1305_cipher()
418 Poly1305_Update(POLY1305_ctx(actx), in, plen); in chacha20_poly1305_cipher()
433 Poly1305_Update(POLY1305_ctx(actx), zero, in chacha20_poly1305_cipher()
439 Poly1305_Update(POLY1305_ctx(actx), zero, in chacha20_poly1305_cipher()
[all …]
/freebsd/sys/crypto/openssl/
H A Dossl_chacha20.c192 Poly1305_Update(&auth_ctx, crp->crp_aad, crp->crp_aad_length); in ossl_chacha20_poly1305_encrypt()
199 Poly1305_Update(&auth_ctx, block, in ossl_chacha20_poly1305_encrypt()
247 Poly1305_Update(&auth_ctx, out, todo); in ossl_chacha20_poly1305_encrypt()
280 Poly1305_Update(&auth_ctx, block, todo); in ossl_chacha20_poly1305_encrypt()
286 Poly1305_Update(&auth_ctx, block, sizeof(uint64_t) * 2); in ossl_chacha20_poly1305_encrypt()
339 Poly1305_Update(&auth_ctx, crp->crp_aad, crp->crp_aad_length); in ossl_chacha20_poly1305_decrypt()
346 Poly1305_Update(&auth_ctx, block, in ossl_chacha20_poly1305_decrypt()
356 Poly1305_Update(&auth_ctx, block, in ossl_chacha20_poly1305_decrypt()
363 Poly1305_Update(&auth_ctx, block, sizeof(uint64_t) * 2); in ossl_chacha20_poly1305_decrypt()
H A Dossl_poly1305.c80 void Poly1305_Update(POLY1305 *ctx, const unsigned char *inp, size_t len) in Poly1305_Update() function
158 Poly1305_Update(vctx, buf, len); in ossl_poly1305_update()
H A Dossl_poly1305.h39 void Poly1305_Update(POLY1305 *ctx, const unsigned char *inp, size_t len);
/freebsd/crypto/openssl/include/crypto/
H A Dpoly1305.h43 void Poly1305_Update(POLY1305 *ctx, const unsigned char *inp, size_t len);
/freebsd/crypto/openssl/providers/implementations/macs/
H A Dpoly1305_prov.c117 Poly1305_Update(&ctx->poly1305, data, datalen); in poly1305_update()
/freebsd/crypto/openssl/crypto/poly1305/
H A Dpoly1305.c468 void Poly1305_Update(POLY1305 *ctx, const unsigned char *inp, size_t len) in Poly1305_Update() function