| /src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| 15-test_genrsa.t | 27 # NOTE: $good may need an update in the future 31 my $good = 11; # Log2 of number of bits (2 << 11 == 2048) 32 while ($good > $bad + 1) { 33 my $checked = int(($good + $bad + 1) / 2); 36 note 2 ** $checked, " bits is good"; 37 $good = $checked; 43 $good++ if $good == $bad; 44 $good = 2 ** $good; [all...] |
| /src/crypto/external/bsd/netpgp/dist/ |
| tst | 3 # function to mark a test as good or bad 53 /usr/bin/netpgp --verify a.gpg && good=1 54 marktest 1 $good 56 /usr/bin/netpgp --verify a || good=2 57 marktest 2 $good 62 diff src/netpgp/netpgp.1 b && good=3 63 marktest 3 $good 68 diff configure c && good=4 69 marktest 4 $good 76 diff e d && good= [all...] |
| /src/crypto/external/apache2/openssl/dist/test/recipes/ |
| 15-test_genrsa.t | 41 # NOTE: $good may need an update in the future 45 my $good = 11; # Log2 of number of bits (2 << 11 == 2048) 47 while ($good > $bad + 1) { 48 my $checked = int(($good + $bad + 1) / 2); 55 note 2 ** $checked, " bits is good"; 56 $good = $checked; 62 $good++ if $good == $bad; 63 $good = 2 ** $good; [all...] |
| /src/crypto/external/bsd/openssl/dist/test/recipes/ |
| 15-test_genrsa.t | 41 # NOTE: $good may need an update in the future 45 my $good = 11; # Log2 of number of bits (2 << 11 == 2048) 47 while ($good > $bad + 1) { 48 my $checked = int(($good + $bad + 1) / 2); 55 note 2 ** $checked, " bits is good"; 56 $good = $checked; 62 $good++ if $good == $bad; 63 $good = 2 ** $good; [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| pkey_meth_test.c | 26 int good = 1; local 34 good = 0; 37 if (!good) { 49 return good; 58 int good = 1; local 66 good = 0; 69 if (!good) { 77 return good;
|
| x509_internal_test.c | 32 int prev = -1, good = 1; local 38 good = 0; 41 if (!good) { 47 return good; 151 int good = 1; local 158 good = 0; 166 good = 0; 170 return good;
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| pkey_meth_test.c | 26 int good = 1; local 34 good = 0; 38 if (!good) { 50 return good; 59 int good = 1; local 67 good = 0; 71 if (!good) { 79 return good;
|
| x509_internal_test.c | 32 int prev = -1, good = 1; local 38 good = 0; 42 if (!good) { 48 return good; 83 int good = 1; local 90 good = 0; 98 good = 0; 102 return good;
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| pkey_meth_test.c | 23 int good = 1; local 31 good = 0; 35 if (!good) { 47 return good; 55 int good = 1; local 63 good = 0; 67 if (!good) { 75 return good;
|
| x509_internal_test.c | 41 int prev = -1, good = 1; local 47 good = 0; 51 if (!good) { 57 return good; 92 int good = 1; local 99 good = 0; 107 good = 0; 111 return good;
|
| /src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/ |
| 15-certstatus.conf | 5 test-0 = 0-certstatus-good 9 [0-certstatus-good] 10 ssl_conf = 0-certstatus-good-ssl 12 [0-certstatus-good-ssl] 13 server = 0-certstatus-good-server 14 client = 0-certstatus-good-client 16 [0-certstatus-good-server] 21 [0-certstatus-good-client] 29 server = 0-certstatus-good-server-extra 31 [0-certstatus-good-server-extra [all...] |
| 16-dtls-certstatus.conf | 5 test-0 = 0-certstatus-good 9 [0-certstatus-good] 10 ssl_conf = 0-certstatus-good-ssl 12 [0-certstatus-good-ssl] 13 server = 0-certstatus-good-server 14 client = 0-certstatus-good-client 16 [0-certstatus-good-server] 21 [0-certstatus-good-client] 29 server = 0-certstatus-good-server-extra 31 [0-certstatus-good-server-extra [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/rsa/ |
| rsa_ssl.c | 67 unsigned int good, found_zero_byte, mask, threes_in_row; local 96 good = constant_time_is_zero(em[0]); 97 good &= constant_time_eq(em[1], 2); 98 err = constant_time_select_int(good, 0, RSA_R_BLOCK_TYPE_IS_NOT_02); 99 mask = ~good; 120 good &= constant_time_ge(zero_index, 2 + 8); 121 err = constant_time_select_int(mask | good, err, 123 mask = ~good; 131 good &= constant_time_lt(threes_in_row, 8); 132 err = constant_time_select_int(mask | good, err [all...] |
| rsa_pk1.c | 161 unsigned int good, found_zero_byte, mask; local 196 good = constant_time_is_zero(em[0]); 197 good &= constant_time_eq(em[1], 2); 214 good &= constant_time_ge(zero_index, 2 + 8); 224 * For good measure, do this check in constant time as well. 226 good &= constant_time_ge(tlen, mlen); 230 * Then if |good| move |mlen| bytes from |em|+RSA_PKCS1_PADDING_SIZE to |to|. 246 mask = good & constant_time_lt(i, mlen); 252 err_clear_last_constant_time(1 & good); 254 return constant_time_select_int(good, mlen, -1) [all...] |
| /src/external/gpl2/dtc/dist/tests/ |
| truncated_string.c | 23 const struct fdt_property *good, *bad; local 32 good = fdt_get_property_by_offset(fdt, off, NULL); 37 if (fdt32_to_cpu(good->len) != 0) 38 FAIL("Unexpected length for good property"); 39 name = fdt_get_string(fdt, fdt32_to_cpu(good->nameoff), &len); 41 FAIL("fdt_get_string() failed on good property: %s", 44 FAIL("fdt_get_string() returned length %d (not 4) on good property", 46 if (!streq(name, "good")) 47 FAIL("fdt_get_string() returned \"%s\" (not \"good\") on good property" [all...] |
| /src/external/bsd/kyua-cli/dist/utils/logging/ |
| operations_test.cpp | 112 ATF_REQUIRE(std::getline(input, line).good()); 115 ATF_REQUIRE(std::getline(input, line).good()); 118 ATF_REQUIRE(std::getline(input, line).good()); 121 ATF_REQUIRE(std::getline(input, line).good()); 141 ATF_REQUIRE(std::getline(input, line).good()); 195 ATF_REQUIRE(std::getline(input, line).good()); 198 ATF_REQUIRE(std::getline(input, line).good()); 201 ATF_REQUIRE(std::getline(input, line).good()); 204 ATF_REQUIRE(std::getline(input, line).good()); 207 ATF_REQUIRE(std::getline(input, line).good()); [all...] |
| /src/crypto/external/apache2/openssl/dist/external/perl/Text-Template-1.56/t/ |
| warnings.t | 25 if ($good =~ /good/) { 34 my $result = $template->fill_in(HASH => { good => 'good' });
|
| /src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/ |
| warnings.t | 25 if ($good =~ /good/) { 34 my $result = $template->fill_in(HASH => { good => 'good' });
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| sigchld.exp | 31 gdb_test "b [gdb_get_line_number "good, not blocked"]" \ 37 gdb_test "continue" ".*good, not blocked.*" "SIGCHLD blocked in inferior"
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| sigchld.exp | 31 gdb_test "b [gdb_get_line_number "good, not blocked"]" \ 37 gdb_test "continue" ".*good, not blocked.*" "SIGCHLD blocked in inferior"
|
| /src/crypto/external/apache2/openssl/dist/ssl/record/methods/ |
| tls_pad.c | 33 size_t good, 62 size_t good; local 72 good = constant_time_ge_s(*reclen, padding_length + overhead); 74 good &= constant_time_ge_s(block_size, padding_length + 1); 75 *reclen -= good & (padding_length + 1); 78 block_size, mac_size, good, libctx); 107 size_t good = -1; local 129 good = constant_time_ge_s(*reclen, overhead + padding_length); 150 good &= ~(mask & (padding_length ^ b)); 155 * or more of the lower eight bits of |good| will be cleared [all...] |
| /src/crypto/external/bsd/openssl/dist/ssl/record/ |
| tls_pad.c | 31 size_t good, 77 size_t good; local 87 good = constant_time_ge_s(*reclen, padding_length + overhead); 89 good &= constant_time_ge_s(block_size, padding_length + 1); 90 *reclen -= good & (padding_length + 1); 93 block_size, mac_size, good, libctx); 122 size_t good = -1; local 144 good = constant_time_ge_s(*reclen, overhead + padding_length); 165 good &= ~(mask & (padding_length ^ b)); 170 * or more of the lower eight bits of |good| will be cleared [all...] |
| /src/external/bsd/tradcpp/dist/tests/ |
| Makefile | 14 $(T).diff: $(T).run $(T).good $(TRADCPP) 15 -diff -u $(T).good $(T).run > $(T).diff 32 good: 34 cp $(T).run $(T).good 37 .PHONY: all run-tests show-diffs clean good
|
| /src/crypto/external/bsd/openssl/dist/crypto/rsa/ |
| rsa_pk1.c | 174 unsigned int good, found_zero_byte, mask; local 208 good = constant_time_is_zero(em[0]); 209 good &= constant_time_eq(em[1], 2); 226 good &= constant_time_ge(zero_index, 2 + 8); 236 * For good measure, do this check in constant time as well. 238 good &= constant_time_ge(tlen, mlen); 242 * Then if |good| move |mlen| bytes from |em|+RSA_PKCS1_PADDING_SIZE to |to|. 258 mask = good & constant_time_lt(i, mlen); 270 err_clear_last_constant_time(1 & good); 273 return constant_time_select_int(good, mlen, -1) 303 unsigned int i, good, version_good; local [all...] |
| /src/external/public-domain/xz/dist/tests/ |
| test_scripts.sh | 27 preimage=$srcdir/files/good-1-check-crc32.xz 28 samepostimage=$srcdir/files/good-1-check-crc64.xz 29 otherpostimage=$srcdir/files/good-1-lzma2-1.xz 57 cp "$srcdir/files/good-1-lzma2-1.xz" xzgrep_test_1.xz 58 cp "$srcdir/files/good-2-lzma2.xz" xzgrep_test_2.xz
|