Searched refs:CRL (Results 1 – 25 of 237) sorted by relevance
12345678910
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/ |
| HD | ConstantRangeList.cpp | 144 ConstantRangeList::unionWith(const ConstantRangeList &CRL) const { in unionWith() 145 assert(getBitWidth() == CRL.getBitWidth() && in unionWith() 149 return CRL; in unionWith() 150 if (CRL.empty()) in unionWith() 158 if (Ranges[i].getLower().slt(CRL.Ranges[j].getLower())) { in unionWith() 161 PreviousRange = CRL.Ranges[j++]; in unionWith() 179 while (i < size() || j < CRL.size()) { in unionWith() 180 if (j == CRL.size() || in unionWith() 181 (i < size() && Ranges[i].getLower().slt(CRL.Ranges[j].getLower()))) { in unionWith() 186 UnionAndUpdateRange(CRL.Ranges[j++]); in unionWith() [all …]
|
| /freebsd-13-stable/crypto/openssl/doc/man1/ |
| HD | crl.pod | 6 crl - CRL utility 28 The B<crl> command processes CRL files in DER or PEM format. 40 This specifies the input format. B<DER> format is DER encoded CRL 61 Print out the CRL in text form. 70 Don't output the encoded version of the CRL. 79 Outputs the "hash" of the CRL issuer name using the older algorithm 96 Verify the signature on a CRL by looking up the issuing certificate in 101 Verify the signature on a CRL by looking up the issuing certificate in 110 The PEM CRL format uses the header and footer lines: 112 -----BEGIN X509 CRL----- [all …]
|
| HD | crl2pkcs7.pod | 6 crl2pkcs7 - Create a PKCS#7 structure from a CRL and certificates 21 The B<crl2pkcs7> command takes an optional CRL and one or more 35 This specifies the CRL input format. B<DER> format is DER encoded CRL 47 This specifies the input filename to read a CRL from or standard input if this 64 Normally a CRL is included in the output file. With this option no CRL is 65 included in the output file and a CRL is not read from the input file. 71 Create a PKCS#7 structure from a certificate and CRL: 75 Creates a PKCS#7 structure in DER format with no CRL from several 84 just certificates and an optional CRL.
|
| HD | ca.pod | 308 =head1 CRL OPTIONS 314 This option generates a CRL based on information in the index file. 318 The number of days before the next CRL is due. That is the days from 319 now to place in the CRL nextUpdate field. 323 The number of hours before the next CRL is due. 347 insensitive. Setting any revocation reason will make the CRL v2. 354 This sets the CRL revocation reason code to B<certificateHold> and the hold 371 The section of the configuration file containing CRL extensions to 372 include. If no CRL extension section is present then a V1 CRL is 373 created, if the CRL extension section is present (even if it is [all …]
|
| HD | verify.pod | 115 Attempt to download CRL information for this certificate. 119 Checks end entity certificate validity by attempting to look up a valid CRL. 120 If a valid CRL cannot be found an error occurs. 142 Enable extended CRL features such as indirect CRLs and alternate CRL 434 The CRL of a certificate could not be found. 444 The CRL signature could not be decrypted: this means that the actual 472 The CRL is not yet valid. 476 The CRL has expired. 488 The CRL lastUpdate field contains an invalid time. 492 The CRL nextUpdate field contains an invalid time. [all …]
|
| HD | rehash.pod | 55 Hashes for CRL's look similar except the letter B<r> appears after 64 cannot be parsed as either a certificate or a CRL or if 74 a certificate or CRL:
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| HD | ConstantRangeList.h | 79 ConstantRangeList unionWith(const ConstantRangeList &CRL) const; 83 ConstantRangeList intersectWith(const ConstantRangeList &CRL) const; 86 bool operator==(const ConstantRangeList &CRL) const { 87 return Ranges == CRL.Ranges; 89 bool operator!=(const ConstantRangeList &CRL) const { 90 return !operator==(CRL);
|
| /freebsd-13-stable/crypto/openssl/doc/man3/ |
| HD | X509V3_get_d2i.pod | 67 of CRL B<crl>, they are otherwise identical to X509V3_get_d2i() and 71 extensions of B<X509_REVOKED> structure B<r> (i.e for CRL entry extensions), 76 of a certificate a CRL or a CRL entry respectively. 163 =head2 PKIX CRL Extensions 165 The following are CRL extensions from PKIX standards such as RFC5280. 167 CRL Number NID_crl_number 168 CRL Distribution Points NID_crl_distribution_points 169 Delta CRL Indicator NID_delta_crl 170 Freshest CRL NID_freshest_crl 174 The following are CRL entry extensions from PKIX standards such as RFC5280. [all …]
|
| HD | X509_STORE_CTX_get_error.pod | 107 =item B<X509_V_ERR_UNABLE_TO_GET_CRL: unable to get certificate CRL> 109 the CRL of a certificate could not be found. 117 =item B<X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE: unable to decrypt CRL's signature> 119 the CRL signature could not be decrypted: this means that the actual signature 131 =item B<X509_V_ERR_CRL_SIGNATURE_FAILURE: CRL signature failure> 143 =item B<X509_V_ERR_CRL_NOT_YET_VALID: CRL is not yet valid> 145 the CRL is not yet valid. 147 =item B<X509_V_ERR_CRL_HAS_EXPIRED: CRL has expired> 149 the CRL has expired. 159 =item B<X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD: format error in CRL's lastUpdate field> [all …]
|
| HD | CMS_add0_cert.pod | 6 - CMS certificate and CRL utility functions 30 CMS_add0_crl() and CMS_add1_crl() add CRL I<crl> to I<cms>. 32 For signed data, such a CRL may be used in certificate validation. 51 The same certificate or CRL must not be added to the same cms structure more
|
| HD | X509_LOOKUP_hash_dir.pod | 44 or CRL object (while PEM can contain several concatenated PEM objects) 82 The directory should contain one certificate or CRL per file in PEM format, 84 I<hash>.B<r>I<N> for a CRL. 91 incremented consecutively for each certificate or CRL with the same I<hash> 103 When checking for new CRLs once one CRL for given hash value is 105 sequence number greater than that of the already cached CRL.
|
| HD | X509_CRL_get0_by_serial.pod | 8 X509_CRL_add0_revoked, X509_CRL_sort - CRL revoked entry utility 58 X509_CRL_add0_revoked() appends revoked entry B<rev> to CRL B<crl>. The 60 it is freed when the parent CRL is freed.
|
| HD | X509_cmp.pod | 25 certificates, X509 CRL objects and various values in an X509 certificate. 45 X509_CRL_cmp() function, this function compares the whole CRL content instead
|
| HD | X509_sign.pod | 7 sign or verify certificate, certificate request or CRL signature 46 of the signed portion of a certificate, certificate request and CRL is cached
|
| HD | X509_VERIFY_PARAM_set_flags.pod | 228 B<X509_V_FLAG_CRL_CHECK> enables CRL checking for the certificate chain leaf 229 certificate. An error occurs if a suitable CRL cannot be found. 231 B<X509_V_FLAG_CRL_CHECK_ALL> enables CRL checking for the entire certificate 345 Delta CRL checking is currently primitive. Only a single delta can be used and 351 CRLs from the CRL distribution points extension. 355 Enable CRL checking when performing certificate verification during SSL
|
| /freebsd-13-stable/crypto/openssl/doc/man7/ |
| HD | x509.pod | 14 an individual, a device, or anything one can imagine. An X.509 CRL 19 the type X509_CRL is used to express a CRL. 30 Finally, there's the supertype X509_INFO, which can contain a CRL, a
|
| /freebsd-13-stable/crypto/openssl/apps/ |
| HD | openssl.cnf | 57 # must be commented out to leave a V1 CRL 58 crl = $dir/crl.pem # The current CRL 71 # Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs 72 # so this is commented out by default to leave a V1 CRL. 73 # crlnumber must also be commented out to leave a V1 CRL. 77 default_crl_days= 30 # how long before next CRL 262 # CRL extensions. 263 # Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
|
| /freebsd-13-stable/crypto/heimdal/lib/hx509/ |
| HD | hx509_err.et | 74 error_code CRL_USED_BEFORE_TIME, "CRL used before it became valid" 75 error_code CRL_USED_AFTER_TIME, "CRL used after it became invalid" 76 error_code CRL_INVALID_FORMAT, "CRL have invalid format" 80 error_code REVOKE_WRONG_DATA, "Got wrong CRL/OCSP data from server"
|
| /freebsd-13-stable/secure/caroot/trusted/ |
| HD | D-TRUST_BR_Root_CA_1_2020.pem | 44 Certificate Sign, CRL Sign 45 X509v3 CRL Distribution Points:
|
| HD | D-TRUST_EV_Root_CA_1_2020.pem | 44 Certificate Sign, CRL Sign 45 X509v3 CRL Distribution Points:
|
| HD | SecureTrust_CA.pem | 52 Digital Signature, Certificate Sign, CRL Sign 57 X509v3 CRL Distribution Points:
|
| HD | COMODO_Certification_Authority.pem | 52 Certificate Sign, CRL Sign 55 X509v3 CRL Distribution Points:
|
| HD | Secure_Global_CA.pem | 52 Digital Signature, Certificate Sign, CRL Sign 57 X509v3 CRL Distribution Points:
|
| /freebsd-13-stable/secure/caroot/blacklisted/ |
| HD | Network_Solutions_Certificate_Authority.pem | 52 Certificate Sign, CRL Sign 55 X509v3 CRL Distribution Points:
|
| HD | D-TRUST_Root_CA_3_2013.pem | 51 Certificate Sign, CRL Sign 52 X509v3 CRL Distribution Points:
|
12345678910