Home
last modified time | relevance | path

Searched refs:second (Results 1 – 25 of 37) sorted by relevance

12

/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ecjpake.data43 ECJPAKE round one: KKP1: length of second point too small
46 ECJPAKE round one: KKP1: length of second point too big
49 ECJPAKE round one: KKP1: no second point data
52 ECJPAKE round one: KKP1: unknown second point format
55 ECJPAKE round one: KKP1: nothing after second point
91 ECJPAKE round one: KKP2: length of second point too small
94 ECJPAKE round one: KKP2: length of second point too big
97 ECJPAKE round one: KKP2: no second point data
100 ECJPAKE round one: KKP2: unknown second point format
103 ECJPAKE round one: KKP2: nothing after second point
[all …]
Dtest_suite_oid.data114 OID get numeric string - second component greater than 39
120 OID get numeric string - second subidentifier not terminated
148 OID get numeric string - 32-bit overflow, second subidentifier
154 OID get numeric string - overlong encoding, second subidentifier
163 OID from numeric string - second component greater than 39
175 OID from numeric string - second component not a number
181 OID from numeric string - first component < 2, second > 39
187 OID from numeric string - non-'.' separator between first and second
190 OID from numeric string - non-'.' separator between second and third
Dtest_suite_asn1parse.data451 SEQUENCE of 2 OCTET STRINGs, second truncated after tag
454 SEQUENCE of 2 OCTET STRINGs, second truncated in length #1
457 SEQUENCE of 2 OCTET STRINGs, second truncated in length #2
460 SEQUENCE of 2 OCTET STRINGs, second truncated in content #1
463 SEQUENCE of 2 OCTET STRINGs, second truncated in content #2
466 SEQUENCE of 2 OCTET STRINGs, second truncated in content #3
Dtest_suite_pkcs1_v15.data82 RSAES-V15 decoding: bad second byte (0 instead of 2)
85 RSAES-V15 decoding: bad second byte (1 instead of 2)
Dtest_suite_bignum_mod.misc.data28 mpi_mod_sub with second input too long
37 mpi_mod_sub with second input too short
93 mpi_mod_add with second input too long
102 mpi_mod_add with second input too short
Dtest_suite_psa_crypto_pake.function389 /* Server second round Output */
420 /* Client second round Input */
443 /* Client second round Output */
484 /* Client second round Input */
507 /* Server second round Input */
Dtest_suite_ccm.function676 * Provide unexpected auth data on second update_ad */
702 * Provide too much auth data on second update_ad */
797 * Provide unexpected plaintext/ciphertext on second update */
830 * Provide too much plaintext/ciphertext on second update */
Dtest_suite_psa_crypto_se_driver_hal.data4 # Run this test case a second time to verify that the library deinit
Dtest_suite_lms.data39 # The signature uses leaf key 1, so must be the second signature generated by
115 # signature uses leaf key 1, so must be the second signature generated by the key
Dtest_suite_bignum.function648 /* result == second operand */
707 /* result == second operand */
755 /* result == second operand */
792 /* result == second operand */
Dtest_suite_hmac_drbg.function217 /* Reset context for second run */
Dtest_suite_lmots.data142 # message, and then attempts to sign the message again. The second signature
Dtest_suite_mps.function466 /* In all cases, fetch the rest of the second buffer. */
695 * second time.
1117 /* In all succeeding cases, fetch the rest of the second buffer. */
Dtest_suite_bignum_core.function44 /* A + B; alias output and second operand => correct result and carry */
72 /* B + A; alias output and second operand => correct result and carry */
590 mbedtls_mpi_uint *B = NULL; /* second value to add */
Dtest_suite_psa_crypto_driver_wrappers.function288 /* Server second round Output */
317 /* Client second round Input */
339 /* Client second round Output */
368 /* Client second round Input */
390 /* Server second round Input */
Dtest_suite_x509parse.data213 X509 SAN parsing two directoryNames, second DN OID malformed
215 x509_parse_san:"data_files/parse_input/server5-second-directoryname-oid-malformed.crt.der":"":MBEDT…
235 …der":"type \: 1\nrfc822Name \: my@other.address\ntype \: 1\nrfc822Name \: second@other.address\n":0
946 X509 CRT verification #78 (multiple CRLs, revoked by second)
954 X509 CRT verification #80 (multiple CRLs, first future, revoked by second)
2088 X509 CRT ASN1 (TBS, inv v3Ext, ExtKeyUsage bad second tag)
2816 X509 CRT extendedKeyUsage #5 (two values, second)
3238 X509 Get time (UTC without second and with invalid time zone #2)
/openthread-latest/third_party/tcplp/lib/test/
Dtest_all.c81 struct otLinkedBuffer second; in cbuf_test() local
82 cbuf_reference(chdr, &first, &second); in cbuf_test()
87 assert(first.mNext == &second); in cbuf_test()
88 memcpy(&buf_string[first.mLength], &second.mData[0], second.mLength); in cbuf_test()
89 assert(second.mNext == NULL); in cbuf_test()
90 buf_string[first.mLength + second.mLength] = '\0'; in cbuf_test()
/openthread-latest/third_party/tcplp/lib/
Dcbuf.c269 void cbuf_reference(const struct cbufhead* chdr, otLinkedBuffer* first, otLinkedBuffer* second) { in cbuf_reference() argument
276 first->mNext = second; in cbuf_reference()
280 second->mNext = NULL; in cbuf_reference()
281 second->mData = &chdr->buf[0]; in cbuf_reference()
282 second->mLength = (uint16_t) (chdr->used - until_end); in cbuf_reference()
Dcbuf.h92 …eference(const struct cbufhead* chdr, struct otLinkedBuffer* first, struct otLinkedBuffer* second);
/openthread-latest/tests/gtest/
Dfake_platform.cpp221 if (aIndex > setting->second.size()) in SettingsGet()
231 const auto &data = setting->second[aIndex]; in SettingsGet()
276 if (static_cast<std::size_t>(aIndex) >= setting->second.size()) in SettingsDelete()
280 setting->second.erase(setting->second.begin() + aIndex); in SettingsDelete()
/openthread-latest/tests/unit/
Dtest_platform.cpp296 if (aIndex > setting->second.size()) in otPlatSettingsGet()
306 const auto &data = setting->second[aIndex]; in otPlatSettingsGet()
350 if (aIndex >= setting->second.size()) in otPlatSettingsDelete()
354 setting->second.erase(setting->second.begin() + aIndex); in otPlatSettingsDelete()
/openthread-latest/third_party/mbedtls/repo/configs/
DREADME.txt23 Note that the second method also works if you want to keep your custom
/openthread-latest/third_party/mbedtls/repo/tests/data_files/
Dtest-ca.opensslconf33 subjectAltName=email:my@other.address,email:second@other.address
/openthread-latest/third_party/mbedtls/repo/3rdparty/p256-m/p256-m/
DREADME.md417 This implementation, `p256.py`, is used by a second Python script,
505 - The `scalar_mult()` function exploits the fact that the second least
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-thread-safety/
Dpsa-thread-safety.md207 …e_free_key_slot`, if a slot has been found then the slot id is set. This second step is not done u…
357 The first is too restrictive, the second and the third would require making it a stable API, and wo…

12