/openthread-latest/third_party/mbedtls/repo/library/ |
D | aes.c | 119 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 …]
|
D | hmac_drbg.c | 59 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()
|
D | ecjpake.c | 196 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 …]
|
D | bignum.c | 2296 mbedtls_mpi A, E, N, X, Y, U, V; in mbedtls_mpi_self_test() local 2299 mbedtls_mpi_init(&Y); mbedtls_mpi_init(&U); mbedtls_mpi_init(&V); in mbedtls_mpi_self_test() 2351 MBEDTLS_MPI_CHK(mbedtls_mpi_read_string(&V, 16, in mbedtls_mpi_self_test() 2361 mbedtls_mpi_cmp_mpi(&Y, &V) != 0) { in mbedtls_mpi_self_test() 2453 mbedtls_mpi_free(&Y); mbedtls_mpi_free(&U); mbedtls_mpi_free(&V); in mbedtls_mpi_self_test()
|
/openthread-latest/tests/scripts/thread-cert/ |
D | test_ipv6.py | 285 V = any_mpl_V() 289 return MPLOption(S, M, V, sequence, seed_id) 527 … _type=0x6d), MPLOption(S=1, M=0, V=0, sequence=2, seed_id=bytearray([0x00, 0x18]))) 608 self.assertEqual(0, ipv6_packet.extension_headers[0].options[0].value.V) 817 V = any_mpl_V() 821 mpl_option = MPLOption(S, M, V, sequence, seed_id) 827 expected_data = bytearray([(S << 6) | (M << 5) | (V << 4), sequence]) + seed_id 834 V = any_mpl_V() 838 data = bytearray([(S << 6) | (M << 5) | (V << 4), sequence]) + seed_id 846 self.assertEqual(V, mpl_option.V) [all …]
|
D | ipv6.py | 821 def __init__(self, S, M, V, sequence, seed_id): argument 824 self.V = V 829 smv = (((self.S & 0x03) << 6) | ((self.M & 0x01) << 5) | ((self.V & 0x01) << 4)) 850 …return "MPLOption(S={}, M={}, V={}, sequence={}, seed_id={})".format(self.S, self.M, self.V, self.…
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/ |
D | psa-storage-format-testing.md | 15 …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… 27 …V, 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…
|
/openthread-latest/third_party/mbedtls/repo/tests/data_files/ |
D | test-int-ca3-badsign.crt | 10 +V/sM9kCMGqcxQwx/bsMaK0y9zqshC7/S5hVlA+WRVyMfEGJmXnfbdwh6CByKIwv
|
D | test-int-ca3.crt | 10 +V/sM9kCMGqcxQwx/bsMaK0y9zqshC7/S5hVlA+WRVyMfEGJmXnfbdwh6CByKIwv
|
D | server9-sha512.crt | 14 MBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgMFAKIEAgIAvgOCAQEAVut9oL/0V/vo
|
D | server9.key | 5 AoGAHFCE2tBL0xB45Go/1e/Pi9//OVZAJ3Cw0mmEuqjVNB7I6zxhYhviWbgz92+V
|
D | server10-bs_int3.pem | 20 +V/sM9kCMGqcxQwx/bsMaK0y9zqshC7/S5hVlA+WRVyMfEGJmXnfbdwh6CByKIwv
|
D | server10_int3-bs.pem | 20 +V/sM9kCMGqcxQwx/bsMaK0y9zqshC7/S5hVlA+WRVyMfEGJmXnfbdwh6CByKIwv
|
D | rsa_pkcs8_pbe_sha1_1024_3des.pem | 16 VBkyv+4V
|
D | server10_int3_int-ca2.crt | 20 +V/sM9kCMGqcxQwx/bsMaK0y9zqshC7/S5hVlA+WRVyMfEGJmXnfbdwh6CByKIwv
|
D | server10_int3_int-ca2_ca.crt | 20 +V/sM9kCMGqcxQwx/bsMaK0y9zqshC7/S5hVlA+WRVyMfEGJmXnfbdwh6CByKIwv
|
D | server10_int3_spurious_int-ca2.crt | 20 +V/sM9kCMGqcxQwx/bsMaK0y9zqshC7/S5hVlA+WRVyMfEGJmXnfbdwh6CByKIwv
|
D | rsa4096_prv.pem | 15 TujMb+0V+h1HoKq/rP1UV/FnxOC/vbyx7TCO1eR5Io7CsAv1D2q4NDXdaoPyssh8
|
/openthread-latest/third_party/mbedtls/repo/tests/data_files/parse_input/ |
D | test-ca-multi_policy.crt | 16 4YqRBbWuBGkePjbce6Lf+rTfaA7kJnyuC9SHguQRmWtV3xzNzLUFn+V/jYSqYvYU
|
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/ |
D | hmac_drbg.h | 78 unsigned char MBEDTLS_PRIVATE(V)[MBEDTLS_MD_MAX_SIZE]; /*!< V in the spec */
|
/openthread-latest/third_party/mbedtls/ |
D | CMakeLists.txt | 39 execute_process(COMMAND ${UNIFDEF_EXE} -V ERROR_VARIABLE VERSION_OUTPUT)
|
/openthread-latest/src/cli/ |
D | README_HISTORY.md | 84 … | Event | Address / PrefixLength | Origin |Scope| P | V | R |
|