/freebsd/crypto/openssl/test/certs/ |
H A D | setup.sh | 211 # Start with some good ones 238 # NC CA1 only permits the host www.good.org and *.good.com email address 239 # good@good.org and *@good.com and IP addresses 127.0.0.1 and 242 NC="permitted;DNS:www.good.org, permitted;DNS:good.com," 243 NC="$NC permitted;email:good@good.org, permitted;email:good.com," 257 # Name constraints subordinate CA. Adds www.good.net (which should be 258 # disallowed because parent CA doesn't permit it) adds ok.good.com 259 # (which should be allowed because parent allows *.good.com 260 # and now excludes bad.ok.good.com (allowed in permitted subtrees 263 NC="permitted;DNS:www.good.net, permitted;DNS:ok.good.com, " [all …]
|
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/ |
H A D | hash.t | 12 my $template = 'We will put value of $v (which is "good") here -> {$v}'; 17 my $vars = { 'v' => \'good' }; 24 my $result2 = 'We will put value of $v (which is "good") here -> good'; 32 my $result4 = 'We will put value of $v (which is "good") here -> good'; 37 my $result5 = 'We will put value of $v (which is "good") here -> good'; 42 is $Q::v, 'good'; 45 my $result7 = 'We will put value of $v (which is "good") here -> good'; 55 … my $template8 = 'We will put value of $v (which is "good") here -> {defined $v ? "bad" : "good"}'; 56 my $result8 = 'We will put value of $v (which is "good") here -> good';
|
H A D | warnings.t | 25 if ($good =~ /good/) { 34 my $result = $template->fill_in(HASH => { good => 'good' });
|
H A D | exported.t | 40 HASH => { "var" => \"It is good!" }); 41 is $out, "With a message here? It is good!\n"; 46 HASH => { "var" => \"It is good!" }); 47 is $out, "With a message here? It is good!\n";
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 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; 64 note "Found lowest allowed amount of bits to be $good"; 68 '-pkeyopt', "rsa_keygen_bits:$good", [all …]
|
/freebsd/crypto/openssl/test/ssl-tests/ |
H A D | 15-certstatus.cnf | 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]
|
H A D | 16-dtls-certstatus.cnf | 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]
|
/freebsd/contrib/kyua/utils/logging/ |
H A D | operations_test.cpp | 112 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 115 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 118 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 121 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 143 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 163 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 217 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 220 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 223 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() 226 ATF_REQUIRE(std::getline(input, line).good()); in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/crypto/openssl/ssl/record/ |
H A D | tls_pad.c | 31 size_t good, 77 size_t good; in ssl3_cbc_remove_padding_and_mac() local 87 good = constant_time_ge_s(*reclen, padding_length + overhead); in ssl3_cbc_remove_padding_and_mac() 89 good &= constant_time_ge_s(block_size, padding_length + 1); in ssl3_cbc_remove_padding_and_mac() 90 *reclen -= good & (padding_length + 1); in ssl3_cbc_remove_padding_and_mac() 93 block_size, mac_size, good, libctx); in ssl3_cbc_remove_padding_and_mac() 122 size_t good = -1; in tls1_cbc_remove_padding_and_mac() local 144 good = constant_time_ge_s(*reclen, overhead + padding_length); in tls1_cbc_remove_padding_and_mac() 165 good &= ~(mask & (padding_length ^ b)); in tls1_cbc_remove_padding_and_mac() 170 * or more of the lower eight bits of |good| will be cleared. in tls1_cbc_remove_padding_and_mac() [all …]
|
/freebsd/crypto/openssl/crypto/rsa/ |
H A D | rsa_pk1.c | 174 unsigned int good, found_zero_byte, mask; in RSA_padding_check_PKCS1_type_2() local 208 good = constant_time_is_zero(em[0]); in RSA_padding_check_PKCS1_type_2() 209 good &= constant_time_eq(em[1], 2); in RSA_padding_check_PKCS1_type_2() 226 good &= constant_time_ge(zero_index, 2 + 8); in RSA_padding_check_PKCS1_type_2() 236 * For good measure, do this check in constant time as well. in RSA_padding_check_PKCS1_type_2() 238 good &= constant_time_ge(tlen, mlen); in RSA_padding_check_PKCS1_type_2() 242 * Then if |good| move |mlen| bytes from |em|+RSA_PKCS1_PADDING_SIZE to |to|. in RSA_padding_check_PKCS1_type_2() 258 mask = good & constant_time_lt(i, mlen); in RSA_padding_check_PKCS1_type_2() 270 err_clear_last_constant_time(1 & good); in RSA_padding_check_PKCS1_type_2() 273 return constant_time_select_int(good, mlen, -1); in RSA_padding_check_PKCS1_type_2() [all …]
|
H A D | rsa_oaep.c | 165 unsigned int good = 0, found_one_byte, mask; in RSA_padding_check_PKCS1_OAEP_mgf1() local 235 good = constant_time_is_zero(em[0]); in RSA_padding_check_PKCS1_OAEP_mgf1() 253 good &= constant_time_is_zero(CRYPTO_memcmp(db, phash, mdlen)); in RSA_padding_check_PKCS1_OAEP_mgf1() 265 good &= (found_one_byte | equals0); in RSA_padding_check_PKCS1_OAEP_mgf1() 268 good &= found_one_byte; in RSA_padding_check_PKCS1_OAEP_mgf1() 271 * At this point |good| is zero unless the plaintext was valid, in RSA_padding_check_PKCS1_OAEP_mgf1() 279 * For good measure, do this check in constant time as well. in RSA_padding_check_PKCS1_OAEP_mgf1() 281 good &= constant_time_ge(tlen, mlen); in RSA_padding_check_PKCS1_OAEP_mgf1() 285 * Then if |good| move |mlen| bytes from |db|+|mdlen|+1 to |to|. in RSA_padding_check_PKCS1_OAEP_mgf1() 301 mask = good & constant_time_lt(i, mlen); in RSA_padding_check_PKCS1_OAEP_mgf1() [all …]
|
/freebsd/crypto/openssl/test/ |
H A D | pkey_meth_test.c | 26 int good = 1; in test_asn1_meths() local 34 good = 0; in test_asn1_meths() 38 if (!good) { in test_asn1_meths() 50 return good; in test_asn1_meths() 59 int good = 1; in test_pkey_meths() local 67 good = 0; in test_pkey_meths() 71 if (!good) { in test_pkey_meths() 79 return good; in test_pkey_meths()
|
H A D | x509_internal_test.c | 32 int prev = -1, good = 1; in test_standard_exts() local 38 good = 0; in test_standard_exts() 42 if (!good) { in test_standard_exts() 48 return good; in test_standard_exts() 83 int good = 1; in test_a2i_ipaddress() local 90 good = 0; in test_a2i_ipaddress() 98 good = 0; in test_a2i_ipaddress() 102 return good; in test_a2i_ipaddress()
|
/freebsd/contrib/llvm-project/lld/docs/ |
H A D | windows_support.rst | 6 .good { background-color: #CCFF99 } 11 .. role:: good 30 :good:`Mostly done`. Some exotic command line options that are not usually 34 :good:`Done`. LLD can read import libraries needed to link against DLL. Both 38 :good:`Done`. The format of static library (.lib) on Windows is actually the 42 :good:`Done`. LLD creates a DLL if ``/DLL`` option is given. Exported 48 :good:`Done`. If an ``.res`` file is given, LLD converts the file to a COFF 52 :good:`Done` for both x86 and x64. 59 :good:`Done`. LLD can emit PDBs that are at parity with those generated by
|
/freebsd/tools/regression/nfsmmap/test1/ |
H A D | Makefile | 4 CLEANFILES= test1.zeros test1.good test1.data test1.scratch 6 all: test1 test1.zeros test1.good 12 @if cmp -s ${.OBJDIR}/test1.data ${.OBJDIR}/test1.good && \ 13 cmp -s ${.OBJDIR}/test1.scratch ${.OBJDIR}/test1.good ; then \ 22 test1.good: test1.good.uu
|
/freebsd/tools/regression/nfsmmap/test2/ |
H A D | Makefile | 4 CLEANFILES= test2.zeros test2.good test2.data test2.scratch 6 all: test2 test2.zeros test2.good 12 @if cmp -s ${.OBJDIR}/test2.data ${.OBJDIR}/test2.good && \ 13 cmp -s ${.OBJDIR}/test2.scratch ${.OBJDIR}/test2.good ; then \ 22 test2.good: test2.good.uu
|
/freebsd/tools/test/stress2/misc/ |
H A D | dumpfs.sh | 35 good=/tmp/dumpfs.sh.good 66 [ -f $good ] && diff $good $dump 68 [ ! -f $good ] && mv $dump $good # save good dump
|
/freebsd/contrib/netbsd-tests/usr.bin/gzip/ |
H A D | t_gzip.sh | 86 atf_test_case good 93 cat >good.gz.uue <<EOF 94 begin-base64 644 good.gz 98 uudecode -m good.gz.uue 100 atf_check gzip -d good.gz 109 atf_add_test_case good
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-no-match.mk | 46 # good 53 # good 69 # good 76 # good 86 # good 93 # good
|
/freebsd/sys/dev/mlx4/mlx4_en/ |
H A D | en_port.h | 196 /* Received frames with a length of MTU< octets and good CRC */ 206 /* Received broadcast frames with good CRC */ 216 /* Received multicast frames with good CRC */ 226 /* Received unicast not short or GIANT frames with good CRC */ 433 /* Transmit frames with a length greater than MTU octets and a good CRC. */ 444 /* Transmit broadcast frames with a good CRC */ 455 /* Transmit multicast frames with a good CRC */ 466 /* Transmit good frames that are neither broadcast nor multicast */ 521 /* Total frames transmitted with a good CRC that are not aborted */ 571 /* Received frames with a length less than 64 octets and a good CRC */ [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/arm/tegra/ |
H A D | nvidia,tegra20-pmc.yaml | 81 nvidia,cpu-pwr-good-en: 84 CPU power good signal from external PMIC to PMC is enabled. 95 nvidia,cpu-pwr-good-time: 97 description: CPU power good time in uSec. 103 nvidia,core-pwr-good-time: 107 Core power good time in uSec. 345 "nvidia,core-pwr-off-time": ["nvidia,core-pwr-good-time"] 346 "nvidia,cpu-pwr-off-time": ["nvidia,cpu-pwr-good-time"] 365 nvidia,cpu-pwr-good-time = <0>; 367 nvidia,core-pwr-good-time = <4587 3876>;
|
/freebsd/sys/contrib/device-tree/Bindings/soc/tegra/ |
H A D | nvidia,tegra20-pmc.yaml | 72 nvidia,cpu-pwr-good-en: 74 description: CPU power good signal from external PMIC to PMC is enabled 87 nvidia,cpu-pwr-good-time: 89 description: CPU power good time in microseconds 95 nvidia,core-pwr-good-time: 97 description: core power good time in microseconds 369 nvidia,core-pwr-off-time: ["nvidia,core-pwr-good-time"] 370 nvidia,cpu-pwr-off-time: ["nvidia,cpu-pwr-good-time"] 388 nvidia,cpu-pwr-good-time = <0>; 390 nvidia,core-pwr-good-time = <4587 3876>;
|
/freebsd/tests/sys/acl/ |
H A D | run | 120 my @good = (); 132 push @good, ($use_re ? '!~' : '!='); 135 push @good, ($use_re ? '=~' : '=='); 138 my $good = !(grep /!/, @good); 140 $failed++ unless $good; 141 print $good ? $OK : $FAILED, "\n"; 142 if (!$good || $opt_v) { 149 $r, $good[$n], $l);
|
/freebsd/sys/netgraph/bluetooth/l2cap/ |
H A D | TODO | 20 Resource manager is not good because it uses MTX_DEF mutexes, 33 L2CAP can support about 65000 channels. Need define some good way 36 to pass 65Mbytes of data from kernel to user space. Not good.
|
/freebsd/contrib/one-true-awk/testdir/ |
HD | beebe.tar | ... /log.out
beebe/reg/exp.good
beebe/reg/exp-eq.good
beebe ... |