Home
last modified time | relevance | path

Searched refs:check (Results 1 – 25 of 110) sorted by relevance

12345

/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_pkwrite.data1 Public key write check RSA
5 Public key write check RSA (DER)
9 Public key write check RSA 4096
13 Public key write check RSA 4096 (DER)
17 Public key write check EC 192 bits
25 Public key write check EC 521 bits
41 Public key write check EC X25519
49 Public key write check EC X448
57 Private key write check RSA
65 Private key write check RSA 4096
[all …]
A Dtest_suite_x509write.data1 Certificate Request check Server1 SHA1
5 Certificate Request check Server1 SHA224
9 Certificate Request check Server1 SHA256
13 Certificate Request check Server1 SHA384
17 Certificate Request check Server1 SHA512
21 Certificate Request check Server1 MD5
25 Certificate Request check Server1 key_usage
37 Certificate Request check Server1 ns_cert_type
61 Certificate write check Server1 SHA1
101 Certificate write check Server1 SHA1, CA
[all …]
A Dtest_suite_psa_crypto_slot_management.data1 Transient slot, check after closing
4 Transient slot, check after closing and restarting
7 Transient slot, check after destroying
10 Transient slot, check after destroying and restarting
16 Persistent slot, check after closing, id=min
22 Persistent slot, check after destroying, id=min
28 Persistent slot, check after purging, id=min
37 Persistent slot, check after closing, id=max
40 Persistent slot, check after destroying, id=max
43 Persistent slot, check after purging, id=max
[all …]
A Dtest_suite_ecdh.function111 mbedtls_mpi dA, dB, zA, zB, check;
163 TEST_ASSERT(mbedtls_test_read_mpi(&check, xA_str) == 0);
164 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&qA.X, &check) == 0);
165 TEST_ASSERT(mbedtls_test_read_mpi(&check, yA_str) == 0);
166 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&qA.Y, &check) == 0);
172 TEST_ASSERT(mbedtls_test_read_mpi(&check, xB_str) == 0);
173 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&qB.X, &check) == 0);
175 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&qB.Y, &check) == 0);
177 TEST_ASSERT(mbedtls_test_read_mpi(&check, z_str) == 0);
181 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&zA, &check) == 0);
[all …]
A Dtest_suite_ecp.data1181 ECP check order for SECP192R1
1185 ECP check order for SECP224R1
1189 ECP check order for SECP256R1
1193 ECP check order for SECP384R1
1197 ECP check order for SECP521R1
1201 ECP check order for BP256R1
1205 ECP check order for BP384R1
1209 ECP check order for BP512R1
1217 ECP check order for SECP192K1
1229 ECP check order for CURVE448
[all …]
A Dtest_suite_pk.data85 PK can do ext: ECDSA(ANY)/NONE, invalid check ECDH
89 PK can do ext: ECDSA(ANY)/NONE, check ECDSA(SHA256)
93 PK can do ext: ECDSA(SHA256)/NONE, check ECDSA(SHA256)
101 PK can do ext: NONE/ECDSA(SHA256), check ECDSA(SHA256)
113 PK can do ext: ECDH/NONE, invalid check STREAM_CIPHER
129 PK can do ext: ECDH/NONE, invalid check ECDSA(SHA256)
133 PK can do ext: ECDH/NONE, check ECDH
137 PK can do ext: ECDH/ECDSA(ANY), check ECDH+SIGN
141 PK can do ext: ECDH/ECDSA(ANY), check ECDH+DERIVE
305 PK can do ext: MBEDTLS_PK_ECKEY, check ECDSA(SHA256)
[all …]
A Dtest_suite_version.function70 int check = mbedtls_version_check_feature(feature);
71 TEST_ASSERT(check == result);
A Dtest_suite_des.data1 DES check weak key #1
4 DES check weak key #2
7 DES check weak key #3
10 DES check weak key #4
A Dtest_suite_psa_crypto_se_driver_hal.data33 SE key import-export persistent, check after restart (slot 0)
36 SE key import-export persistent, check after restart (slot 3)
45 SE key import-export volatile, check after restart (slot 0)
48 SE key import-export volatile, check after restart (slot 3)
/lib/lwip/lwip/test/unit/
A DMakefile5 cd ../../contrib/ports/unix/check/ && $(MAKE)
7 check: target
8 cd ../../contrib/ports/unix/check/ && $(MAKE) check
11 cd ../../contrib/ports/unix/check/ && $(MAKE) clean
/lib/zlib/
A Dinflate.c151 # define UPDATE(check, buf, len) \ argument
152 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
154 # define UPDATE(check, buf, len) adler32(check, buf, len) argument
159 # define CRC2(check, word) \ argument
163 check = crc32(check, hbuf, 2); \
166 # define CRC4(check, word) \ argument
172 check = crc32(check, hbuf, 4); \
469 state->check = crc32(state->check, next, copy); in inflate()
491 state->check = crc32(state->check, next, copy); in inflate()
513 state->check = crc32(state->check, next, copy); in inflate()
[all …]
/lib/lwip/lwip/contrib/ports/unix/check/
A DREADME4 1. Install the check library, through a package manager or from https://libcheck.github.io/check/
6 3. Run `make check`
A DMakefile33 .PHONY: all clean check
38 CFLAGS=-DLWIP_NOASSERT_ON_ERROR -I/usr/include/check -I$(LWIPDIR)/../test/unit
93 check: lwip_unittests target
A DCMakeLists.txt18 … # check.h causes 'error: token pasting of ',' and __VA_ARGS__ is a GNU extension' with clang 9.0.0
40 find_library(LIBCHECK check)
45 …# check installed via brew on Darwin doesn't have a separate subunit library (must be statically l…
/lib/lwip/lwip/contrib/ports/win32/
A Dreadme.txt24 To compile the unittests (msvc\lwIP_unittests.sln), download check (tested with v0.11.0) from
25 https://github.com/libcheck/check/releases/
26 and place it in a folder "check" next to the "contrib" folder.
/lib/mbedtls/external/mbedtls/scripts/
A Dcode_style.py105 check=False)
121 stderr=subprocess.PIPE, check=False)
131 cp = subprocess.run(diff_cmd, check=False)
152 result = subprocess.run(uncrustify_cmd, check=False)
A Decp_comb_table.py172 p = subprocess.run(args=args, check=False)
175 p = subprocess.run(args=[binname], check=False, env={
/lib/mbedtls/external/mbedtls/tests/scripts/
A Dcheck-generated-files.sh145 check scripts/generate_visualc_files.pl visualc/VS2017
151 check tests/scripts/generate_psa_wrappers.py tests/include/test/psa_test_wrappers.h tests/src/psa_t…
A Dtest_zeroize.gdb8 # Run a test using the debugger to check that the mbedtls_platform_zeroize()
16 # seem to be a mechanism to reliably check whether the zeroize calls are being
27 # inserting a test after a call to mbedtls_platform_zeroize() to check whether
A Dcheck_names.py686 check=True
695 check=True
703 check=True
716 check=True
756 check=True
/lib/mbedtls/external/mbedtls/
A DMakefile21 .PHONY: all no_test programs lib tests install uninstall clean test check lcov apidoc apidoc_clean
170 check: lib tests target
171 $(MAKE) -C tests check
173 test: check
/lib/
A Dlist_sort.c176 static int __init check(struct debug_el *ela, struct debug_el *elb) in check() function
212 check(ela, elb); in cmp()
275 if (check(el, el1)) { in list_sort_test()
/lib/mbedtls/external/mbedtls/docs/architecture/testing/
A Ddriver-interface-test-strategy.md43 …d pointer is `NULL`) but has the substructure containing that method, and check that the return va…
44 …taining that method (i.e. the pointer to the substructure is `NULL`), and check that the return va…
45 * At least one test should register multiple drivers with a key in each driver and check that the e…
46 …ould register the same driver structure with multiple lifetime values and check that the driver re…
54 * Wherever the specification guarantees parameters that satisfy certain preconditions, check these …
60 …river call, call it with parameters that cause a driver to be invoked and check how Mbed TLS handl…
85 …>), call `mbedtls_psa_crypto_free(); psa_crypto_init()` at that point and check that this either r…
A Dpsa-storage-format-testing.md25 … has the expected data and metadata. Import-and-save testing and load-and-check testing can be spl…
29check passing on version W with the same data that proves that version W can read back what versio…
37 …implemented in `scripts/abi_check.py`. This tool fails the CI if load-and-check test case disappea…
39 …s in load-only mode: create a file with the expected content, load it and check the data that it c…
94 * For alternative persistence levels: have load-and-check tests for supported persistence levels. W…
/lib/mbedtls/external/mbedtls/tests/
A DMakefile109 .PHONY: all check test clean
189 check: $(BINARIES) target
192 test: check

Completed in 50 milliseconds

12345