Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RevokedCertificateEntries (1.05 sec)

  1. src/crypto/x509/x509_test.go

    				}
    			} else {
    				if len(parsedCRL.RevokedCertificateEntries) != len(tc.template.RevokedCertificateEntries) {
    					t.Fatalf("RevokedCertificateEntries length mismatch: got %d; want %d.",
    						len(parsedCRL.RevokedCertificateEntries),
    						len(tc.template.RevokedCertificateEntries))
    				}
    				for i, rce := range parsedCRL.RevokedCertificateEntries {
    					expected := tc.template.RevokedCertificateEntries[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	SignatureAlgorithm SignatureAlgorithm
    
    	// RevokedCertificateEntries represents the revokedCertificates sequence in
    	// the CRL. It is used when creating a CRL and also populated when parsing a
    	// CRL. When creating a CRL, it may be empty or nil, in which case the
    	// revokedCertificates ASN.1 sequence will be omitted from the CRL entirely.
    	RevokedCertificateEntries []RevocationListEntry
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/crypto/x509/parser.go

    							return nil, fmt.Errorf("x509: malformed reasonCode extension")
    						}
    					}
    					rce.Extensions = append(rce.Extensions, ext)
    				}
    			}
    
    			rl.RevokedCertificateEntries = append(rl.RevokedCertificateEntries, rce)
    			rcDeprecated := pkix.RevokedCertificate{
    				SerialNumber:   rce.SerialNumber,
    				RevocationTime: rce.RevocationTime,
    				Extensions:     rce.Extensions,
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. api/go1.21.txt

    pkg crypto/x509, type RevocationListEntry struct, RevocationTime time.Time #53573
    pkg crypto/x509, type RevocationListEntry struct, SerialNumber *big.Int #53573
    pkg crypto/x509, type RevocationList struct, RevokedCertificateEntries []RevocationListEntry #53573
    pkg crypto/x509, type RevocationList struct, RevokedCertificates //deprecated #53573
    pkg debug/elf, const COMPRESS_ZSTD = 2 #55107
    pkg debug/elf, const COMPRESS_ZSTD CompressionType #55107
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"RevocationList.Number", Field, 15},
    		{"RevocationList.Raw", Field, 19},
    		{"RevocationList.RawIssuer", Field, 19},
    		{"RevocationList.RawTBSRevocationList", Field, 19},
    		{"RevocationList.RevokedCertificateEntries", Field, 21},
    		{"RevocationList.RevokedCertificates", Field, 15},
    		{"RevocationList.Signature", Field, 19},
    		{"RevocationList.SignatureAlgorithm", Field, 15},
    		{"RevocationList.ThisUpdate", Field, 15},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top