Searched refs:poly1305_process (Results 1 – 11 of 11) sorted by relevance
/optee_os-3.20.0/core/lib/libtomcrypt/src/mac/poly1305/ |
A D | poly1305_test.c | 29 if ((err = poly1305_process(&st, (unsigned char*)m, 5)) != CRYPT_OK) return err; in poly1305_test() 30 if ((err = poly1305_process(&st, (unsigned char*)m + 5, 4)) != CRYPT_OK) return err; in poly1305_test() 31 if ((err = poly1305_process(&st, (unsigned char*)m + 9, 3)) != CRYPT_OK) return err; in poly1305_test() 32 if ((err = poly1305_process(&st, (unsigned char*)m + 12, 2)) != CRYPT_OK) return err; in poly1305_test() 33 if ((err = poly1305_process(&st, (unsigned char*)m + 14, 1)) != CRYPT_OK) return err; in poly1305_test() 34 if ((err = poly1305_process(&st, (unsigned char*)m + 15, mlen - 15)) != CRYPT_OK) return err; in poly1305_test() 39 if ((err = poly1305_process(&st, (unsigned char*)m, mlen)) != CRYPT_OK) return err; in poly1305_test()
|
A D | poly1305_memory.c | 34 if ((err = poly1305_process(&st, in, inlen)) != CRYPT_OK) { goto LBL_ERR; } in poly1305_memory()
|
A D | poly1305_memory_multi.c | 43 if ((err = poly1305_process(&st, curptr, curlen)) != CRYPT_OK) { goto LBL_ERR; } in poly1305_memory_multi()
|
A D | poly1305_file.c | 59 if ((err = poly1305_process(&st, buf, (unsigned long)x)) != CRYPT_OK) { in poly1305_file()
|
A D | poly1305.c | 121 int poly1305_process(poly1305_state *st, const unsigned char *in, unsigned long inlen) in poly1305_process() function
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/encauth/chachapoly/ |
A D | chacha20poly1305_encrypt.c | 28 if ((err = poly1305_process(&st->poly, padzero, padlen)) != CRYPT_OK) return err; in chacha20poly1305_encrypt() 32 if ((err = poly1305_process(&st->poly, out, inlen)) != CRYPT_OK) return err; in chacha20poly1305_encrypt()
|
A D | chacha20poly1305_decrypt.c | 27 if ((err = poly1305_process(&st->poly, padzero, padlen)) != CRYPT_OK) return err; in chacha20poly1305_decrypt() 32 if ((err = poly1305_process(&st->poly, in, inlen)) != CRYPT_OK) return err; in chacha20poly1305_decrypt()
|
A D | chacha20poly1305_done.c | 26 if ((err = poly1305_process(&st->poly, padzero, padlen)) != CRYPT_OK) return err; in chacha20poly1305_done() 30 if ((err = poly1305_process(&st->poly, buf, 16)) != CRYPT_OK) return err; in chacha20poly1305_done()
|
A D | chacha20poly1305_add_aad.c | 23 if ((err = poly1305_process(&st->poly, in, inlen)) != CRYPT_OK) return err; in chacha20poly1305_add_aad()
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/ |
A D | poly1305.c | 94 static void poly1305_process( mbedtls_poly1305_context *ctx, in poly1305_process() function 342 poly1305_process( ctx, 1U, ctx->queue, 1U ); /* add padding bit */ in mbedtls_poly1305_update() 353 poly1305_process( ctx, nblocks, &input[offset], 1U ); in mbedtls_poly1305_update() 387 poly1305_process( ctx, 1U, /* Process 1 block */ in mbedtls_poly1305_finish()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/ |
A D | tomcrypt_mac.h | 115 int poly1305_process(poly1305_state *st, const unsigned char *in, unsigned long inlen);
|
Completed in 9 milliseconds