| /freebsd/sys/contrib/openzfs/.github/workflows/ |
| H A D | README.md | 11 sanity-checks-20.04 12 zloop-checks-20.04 21 sanity-checks-22.04 22 zloop-checks-22.04 32 Build-Ubuntu-20.04-->sanity-checks-20.04 33 Build-Ubuntu-20.04-->zloop-checks-20.04 35 Build-Ubuntu-22.04-->sanity-checks-22.04 36 Build-Ubuntu-22.04-->zloop-checks-22.04 39 sanity-checks-20.04-->CleanUp+Summary 48 sanity-checks-22.04-->CleanUp+Summary
|
| /freebsd/crypto/openssl/crypto/bn/ |
| H A D | bn_prime.c | 27 static int bn_is_prime_int(const BIGNUM *w, int checks, BN_CTX *ctx, 131 int checks = bn_mr_min_checks(bits); in BN_generate_prime_ex2() local 170 i = bn_is_prime_int(ret, checks, ctx, 0, cb); in BN_generate_prime_ex2() 183 for (i = 0; i < checks; i++) { in BN_generate_prime_ex2() 228 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, in BN_is_prime_ex() argument 231 return ossl_bn_check_prime(a, checks, ctx_passed, 0, cb); in BN_is_prime_ex() 234 int BN_is_prime_fasttest_ex(const BIGNUM *w, int checks, BN_CTX *ctx, in BN_is_prime_fasttest_ex() argument 237 return ossl_bn_check_prime(w, checks, ctx, do_trial_division, cb); in BN_is_prime_fasttest_ex() 242 int ossl_bn_check_prime(const BIGNUM *w, int checks, BN_CTX *ctx, in ossl_bn_check_prime() argument 247 if (checks < min_checks) in ossl_bn_check_prime() [all …]
|
| H A D | bn_depr.c | 46 int BN_is_prime(const BIGNUM *a, int checks, in BN_is_prime() argument 52 return ossl_bn_check_prime(a, checks, ctx_passed, 0, &cb); in BN_is_prime() 55 int BN_is_prime_fasttest(const BIGNUM *a, int checks, in BN_is_prime_fasttest() argument 62 return ossl_bn_check_prime(a, checks, ctx_passed, do_trial_division, &cb); in BN_is_prime_fasttest()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | __assert | 38 // Fast hardening mode checks. 42 // Enabled checks. 45 // Disabled checks. 60 // Extensive hardening mode checks. 64 // Enabled checks. 75 // Disabled checks. 79 // Debug hardening mode checks. 83 // All checks enabled. 97 // Disable all checks if hardening is not enabled. 101 // All checks disabled.
|
| /freebsd/contrib/xz/src/xz/ |
| H A D | list.c | 211 uint32_t checks; member 710 uint32_t checks, bool space_after_comma) in get_check_names() argument 715 if (checks == 0) in get_check_names() 716 checks = 1; in get_check_names() 725 if (checks & (UINT32_C(1) << i)) { in get_check_names() 752 char checks[CHECKS_STR_SIZE]; in print_info_basic() local 753 get_check_names(checks, lzma_index_checks(xfi->idx), false); in print_info_basic() 764 checks, in print_info_basic() 782 uint32_t checks, uint64_t stream_padding) in print_adv_helper() argument 785 get_check_names(checks_str, checks, true); in print_adv_helper() [all …]
|
| /freebsd/crypto/openssl/providers/implementations/encode_decode/ |
| H A D | encode_key2blob.c | 61 int checks[] = { in key2blob_check_selection() local 72 for (i = 0; i < OSSL_NELEM(checks); i++) { in key2blob_check_selection() 73 int check1 = (selection & checks[i]) != 0; in key2blob_check_selection() 74 int check2 = (selection_mask & checks[i]) != 0; in key2blob_check_selection()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | X509_check_issued.pod | 5 X509_check_issued - checks if certificate is apparently issued by another 17 X509_check_issued() checks if certificate I<subject> was apparently issued 22 serial number, and issuer fields of I<issuer>, as far as present. It also checks 29 X509_check_issued() returns B<X509_V_OK> if all checks are successful
|
| H A D | SSL_set1_host.pod | 19 These functions configure server hostname checks in the SSL client. 25 and hostname checks are not performed on the peer certificate. 27 checks the peer hostname via L<X509_check_host(3)> with I<flags> as specified 49 L<X509_check_host(3)> when name checks are applicable, by default 66 explicitly calling L<X509_check_host(3)>. Hostname checks may be out 105 /* Name checks were in scope and matched the peername */
|
| H A D | SCT_validate.pod | 6 checks Signed Certificate Timestamps (SCTs) are valid 28 SCT_LIST_validate() performs the same checks on an entire stack of SCTs. 29 The result of the validation checks can be obtained by passing the SCT to 67 If all checks pass, the validation status will be SCT_VALIDATION_STATUS_VALID.
|
| H A D | X509_check_host.pod | 26 X509_check_host() checks if the certificate Subject Alternative 50 X509_check_email() checks if the certificate matches the specified 61 X509_check_ip() checks if the certificate matches a specified IPv4 or 139 checks may be out of scope with the DANE-EE(3) certificate usage, 140 and the internal checks will be suppressed as appropriate when
|
| H A D | SSL_CONF_CTX_set1_prefix.pod | 26 If the B<SSL_CONF_FLAG_CMDLINE> flag is set then prefix checks are case 30 If the B<SSL_CONF_FLAG_FILE> flag is set then prefix checks are case
|
| H A D | EVP_PKEY_check.pod | 30 implementations may offer a quicker form of validation that omits some checks in 38 implementations may offer a quicker form of validation that omits some checks in 53 default provider may use checks that are not as restrictive for certain key types.
|
| H A D | RSA_check_key.pod | 26 It checks that B<p> and B<q> are 31 It also checks that B<d*e = 1 mod (p-1*q-1)>, 33 It performs integrity checks on all
|
| /freebsd/usr.bin/dtc/ |
| H A D | dtc.cc | 115 fdt::checking::check_manager checks; in main() local 263 if (!checks.disable_checker(arg)) in main() 269 if (!checks.enable_checker(arg)) in main() 352 if (!(checks.run_checks(&tree, true) || keep_going)) in main()
|
| /freebsd/crypto/openssl/doc/man1/ |
| H A D | openssl-prime.pod.in | 17 [B<-checks> I<num>] 22 This command checks if the specified numbers are prime. 55 =item B<-checks> I<num>
|
| H A D | openssl-verification-options.pod | 48 OpenSSL checks the validity period of such certificates 152 Part of these checks are enabled only if the B<-x509_strict> option is given. 156 If the B<-purpose> option is not given then no such checks are done except for 162 and possibly also further non-standard checks are performed. 259 Perform validation checks using time specified by I<timestamp> and not 469 checks for consistency with S/MIME signing use (C<smimesign>). 590 in its section 6 does not include EKU checks for CA certificates. 601 it checks that any present EKU extension (that does not contain 603 Moreover, it does these checks even for trust anchor certificates. 622 For all other certificates the normal CA checks apply. In addition, [all …]
|
| /freebsd/contrib/kyua/m4/ |
| H A D | compiler-flags.m4 | 37 dnl selected. This fact would confuse the flag checks below because we would 56 dnl flag checks (unless we are checking for -Werror already). 65 # compatible with other flags, and such compatibility checks are 134 dnl The checks are performed independently and only when all the checks are 153 dnl The checks are performed independently and only when all the checks are
|
| /freebsd/sys/conf/ |
| H A D | std.debug | 11 options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS 13 options WITNESS # Enable checks to detect deadlocks and cycles
|
| /freebsd/contrib/lutok/m4/ |
| H A D | compiler-flags.m4 | 37 dnl selected. This fact would confuse the flag checks below because we would 56 dnl flag checks (unless we are checking for -Werror already). 124 dnl The checks are performed independently and only when all the checks are 143 dnl The checks are performed independently and only when all the checks are
|
| /freebsd/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | jemalloc_preamble.h.in | 170 * Are extra safety checks enabled; things like checking the size of sized 178 * This lets us only guard safety checks by one flag instead of two; fast 179 * checks can guard solely by config_opt_safety_checks and run in debug mode 190 * general safety checks.
|
| /freebsd/contrib/tcpdump/ |
| H A D | CHANGES | 49 RPKI-Router: Refine length and bounds checks. 176 EAP: fix some length checks and output issues. 180 802.15.4, BGP, LISP: fix some length checks, compiler warnings, 188 Juniper: Add some bounds checks. 192 Ethernet: Rework the length checks, add a length check. 193 IPX: Add two length checks. 216 IPv6: Add some checks for the Hop-by-Hop Options header 227 ZEP: Add three length checks. 299 Ethernet, IEEE 802.15.4, IP, L2TP, TCP, ZEP: Add bounds checks 376 Add and remove plenty of bounds checks. [all …]
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | EVP_KDF-PBKDF2.pod | 45 This parameter can be used to enable or disable SP800-132 compliance checks. 46 Setting the mode to 0 enables the compliance checks. 48 The checks performed are:
|
| /freebsd/crypto/openssl/doc/man5/ |
| H A D | fips_config.pod | 75 The following FIPS configuration options indicate if run-time checks related to 78 A value of '1' will perform the checks, otherwise if the value is '0' the checks 87 =item B<security-checks> 207 security-checks = 1
|
| /freebsd/crypto/krb5/src/util/verto/ |
| H A D | ev_wrap.h | 19 #define checks ((loop)->checks) macro 118 #undef checks
|
| /freebsd/contrib/libarchive/build/autoconf/ |
| H A D | m4_ax_compile_check_sizeof.m4 | |