Home
last modified time | relevance | path

Searched refs:V (Results 1 – 6 of 6) sorted by relevance

/mbedtls-latest/library/
Daes.c119 V(A5, 63, 63, C6), V(84, 7C, 7C, F8), V(99, 77, 77, EE), V(8D, 7B, 7B, F6), \
120 V(0D, F2, F2, FF), V(BD, 6B, 6B, D6), V(B1, 6F, 6F, DE), V(54, C5, C5, 91), \
121 V(50, 30, 30, 60), V(03, 01, 01, 02), V(A9, 67, 67, CE), V(7D, 2B, 2B, 56), \
122 V(19, FE, FE, E7), V(62, D7, D7, B5), V(E6, AB, AB, 4D), V(9A, 76, 76, EC), \
123 V(45, CA, CA, 8F), V(9D, 82, 82, 1F), V(40, C9, C9, 89), V(87, 7D, 7D, FA), \
124 V(15, FA, FA, EF), V(EB, 59, 59, B2), V(C9, 47, 47, 8E), V(0B, F0, F0, FB), \
125 V(EC, AD, AD, 41), V(67, D4, D4, B3), V(FD, A2, A2, 5F), V(EA, AF, AF, 45), \
126 V(BF, 9C, 9C, 23), V(F7, A4, A4, 53), V(96, 72, 72, E4), V(5B, C0, C0, 9B), \
127 V(C2, B7, B7, 75), V(1C, FD, FD, E1), V(AE, 93, 93, 3D), V(6A, 26, 26, 4C), \
128 V(5A, 36, 36, 6C), V(41, 3F, 3F, 7E), V(02, F7, F7, F5), V(4F, CC, CC, 83), \
[all …]
Dhmac_drbg.c59 ctx->V, md_len)) != 0) { in mbedtls_hmac_drbg_update()
81 ctx->V, md_len)) != 0) { in mbedtls_hmac_drbg_update()
84 if ((ret = mbedtls_md_hmac_finish(&ctx->md_ctx, ctx->V)) != 0) { in mbedtls_hmac_drbg_update()
116 if ((ret = mbedtls_md_hmac_starts(&ctx->md_ctx, ctx->V, in mbedtls_hmac_drbg_seed_buf()
120 memset(ctx->V, 0x01, mbedtls_md_get_size(md_info)); in mbedtls_hmac_drbg_seed_buf()
248 if ((ret = mbedtls_md_hmac_starts(&ctx->md_ctx, ctx->V, md_size)) != 0) { in mbedtls_hmac_drbg_seed()
251 memset(ctx->V, 0x01, md_size); in mbedtls_hmac_drbg_seed()
353 ctx->V, md_len)) != 0) { in mbedtls_hmac_drbg_random_with_add()
356 if ((ret = mbedtls_md_hmac_finish(&ctx->md_ctx, ctx->V)) != 0) { in mbedtls_hmac_drbg_random_with_add()
360 memcpy(out, ctx->V, use_len); in mbedtls_hmac_drbg_random_with_add()
Decjpake.c196 const mbedtls_ecp_point *V, in ecjpake_hash() argument
210 MBEDTLS_MPI_CHK(ecjpake_write_len_point(&p, end, grp, pf, V)); in ecjpake_hash()
253 mbedtls_ecp_point V, VV; in ecjpake_zkp_read() local
257 mbedtls_ecp_point_init(&V); in ecjpake_zkp_read()
272 MBEDTLS_MPI_CHK(mbedtls_ecp_tls_read_point(grp, &V, p, (size_t) (end - *p))); in ecjpake_zkp_read()
292 MBEDTLS_MPI_CHK(ecjpake_hash(md_type, grp, pf, G, &V, X, id, &h)); in ecjpake_zkp_read()
296 if (mbedtls_ecp_point_cmp(&VV, &V) != 0) { in ecjpake_zkp_read()
302 mbedtls_ecp_point_free(&V); in ecjpake_zkp_read()
326 mbedtls_ecp_point V; in ecjpake_zkp_write() local
335 mbedtls_ecp_point_init(&V); in ecjpake_zkp_write()
[all …]
Dbignum.c2319 mbedtls_mpi A, E, N, X, Y, U, V; in mbedtls_mpi_self_test() local
2322 mbedtls_mpi_init(&Y); mbedtls_mpi_init(&U); mbedtls_mpi_init(&V); in mbedtls_mpi_self_test()
2374 MBEDTLS_MPI_CHK(mbedtls_mpi_read_string(&V, 16, in mbedtls_mpi_self_test()
2384 mbedtls_mpi_cmp_mpi(&Y, &V) != 0) { in mbedtls_mpi_self_test()
2476 mbedtls_mpi_free(&Y); mbedtls_mpi_free(&U); mbedtls_mpi_free(&V); in mbedtls_mpi_self_test()
/mbedtls-latest/docs/architecture/testing/
Dpsa-storage-format-testing.md15 …ser of Mbed TLS, I want to store a key under version V and read it back under version W, with W ≥
17 Doing the testing this way would be difficult because we'd need to have version V of Mbed TLS avail…
19 An alternative, semi-direct approach consists of generating test data under version V, and reading …
23 … the stability of the storage format by creating test cases under a version V of Mbed TLS, where t…
27V, this means that the test data is consistent with what the implementation does. When the test la…
29 …assing on version V and load-and-check passing on version W with the same data that proves that ve…
/mbedtls-latest/include/mbedtls/
Dhmac_drbg.h78 unsigned char MBEDTLS_PRIVATE(V)[MBEDTLS_MD_MAX_SIZE]; /*!< V in the spec */