Lines Matching full:x509
7 package x509
28 import pkix "crypto/x509/pkix"
158 type @"crypto/x509/pkix".AttributeTypeAndValue struct { Type @"encoding/asn1".ObjectIdentifier; Value interface {} }
159 type @"crypto/x509/pkix".RelativeDistinguishedNameSET []@"crypto/x509/pkix".AttributeTypeAndValue
160 type @"crypto/x509/pkix".RDNSequence []@"crypto/x509/pkix".RelativeDistinguishedNameSET
161 type @"crypto/x509/pkix".Name struct { Country []string; Organization []string; OrganizationalUnit []string; Locality []string; Province []string; StreetAddress []string; PostalCode []string; SerialNumber string; CommonName string; Names []@"crypto/x509/pkix".AttributeTypeAndValue; ExtraNames []@"crypto/x509/pkix".AttributeTypeAndValue }
162 func (@"crypto/x509/pkix".n·1 *@"crypto/x509/pkix".Name "esc:0x9") FillFromRDNSequence (@"crypto/x509/pkix".rdns·2 *@"crypto/x509/pkix".RDNSequence "esc:0x9")
163 func (@"crypto/x509/pkix".n·2 @"crypto/x509/pkix".Name) ToRDNSequence () (@"crypto/x509/pkix".ret·1 @"crypto/x509/pkix".RDNSequence)
164 func (@"crypto/x509/pkix".n·2 @"crypto/x509/pkix".Name "esc:0x1") @"crypto/x509/pkix".appendRDNs (@"crypto/x509/pkix".in·3 @"crypto/x509/pkix".RDNSequence "esc:0x1a", @"crypto/x509/pkix".values·4 []string "esc:0x9", @"crypto/x509/pkix".oid·5 @"encoding/asn1".ObjectIdentifier) (? @"crypto/x509/pkix".RDNSequence)
228 type @"crypto/x509/pkix".Extension struct { Id @"encoding/asn1".ObjectIdentifier; Critical bool "asn1:\"optional\""; Value []byte }
252 type @"crypto/x509/pkix".AlgorithmIdentifier struct { Algorithm @"encoding/asn1".ObjectIdentifier; Parameters @"encoding/asn1".RawValue "asn1:\"optional\"" }
253 type @"crypto/x509/pkix".RevokedCertificate struct { SerialNumber *@"math/big".Int; RevocationTime @"time".Time; Extensions []@"crypto/x509/pkix".Extension "asn1:\"optional\"" }
254 type @"crypto/x509/pkix".TBSCertificateList struct { Raw @"encoding/asn1".RawContent; Version int "asn1:\"optional,default:1\""; Signature @"crypto/x509/pkix".AlgorithmIdentifier; Issuer @"crypto/x509/pkix".RDNSequence; ThisUpdate @"time".Time; NextUpdate @"time".Time "asn1:\"optional\""; RevokedCertificates []@"crypto/x509/pkix".RevokedCertificate "asn1:\"optional\""; Extensions []@"crypto/x509/pkix".Extension "asn1:\"tag:0,optional,explicit\"" }
258 type @"crypto/x509/pkix".CertificateList struct { TBSCertList @"crypto/x509/pkix".TBSCertificateList; SignatureAlgorithm @"crypto/x509/pkix".AlgorithmIdentifier; SignatureValue @"encoding/asn1".BitString }
259 func (@"crypto/x509/pkix".certList·2 *@"crypto/x509/pkix".CertificateList "esc:0x1") HasExpired (@"crypto/x509/pkix".now·3 @"time".Time "esc:0x1") (? bool) { return @"crypto/x509/pkix".now·3.After(@"crypto/x509/pkix".certList·2.TBSCertList.NextUpdate) }
261 type @"".Certificate struct { Raw []byte; RawTBSCertificate []byte; RawSubjectPublicKeyInfo []byte; RawSubject []byte; RawIssuer []byte; Signature []byte; SignatureAlgorithm @"".SignatureAlgorithm; PublicKeyAlgorithm @"".PublicKeyAlgorithm; PublicKey interface {}; Version int; SerialNumber *@"math/big".Int; Issuer @"crypto/x509/pkix".Name; Subject @"crypto/x509/pkix".Name; NotBefore @"time".Time; NotAfter @"time".Time; KeyUsage @"".KeyUsage; Extensions []@"crypto/x509/pkix".Extension; ExtraExtensions []@"crypto/x509/pkix".Extension; UnhandledCriticalExtensions []@"encoding/asn1".ObjectIdentifier; ExtKeyUsage []@"".ExtKeyUsage; UnknownExtKeyUsage []@"encoding/asn1".ObjectIdentifier; BasicConstraintsValid bool; IsCA bool; MaxPathLen int; MaxPathLenZero bool; SubjectKeyId []byte; AuthorityKeyId []byte; OCSPServer []string; IssuingCertificateURL []string; DNSNames []string; EmailAddresses []string; IPAddresses []@"net".IP; PermittedDNSDomainsCritical bool; PermittedDNSDomains []string; CRLDistributionPoints []string; PolicyIdentifiers []@"encoding/asn1".ObjectIdentifier }
262 func (@"".c·2 *@"".Certificate "esc:0x9") CheckCRLSignature (@"".crl·3 *@"crypto/x509/pkix".CertificateList "esc:0x9") (@"".err·1 error)
265 func (@"".c·3 *@"".Certificate "esc:0x9") CreateCRL (@"".rand·4 @"io".Reader, @"".priv·5 interface {}, @"".revokedCerts·6 []@"crypto/x509
341 func (? @"".SystemRootsError) Error () (? string) { return "x509: failed to load system roots and no roots provided" }
384 func (? @"".ConstraintViolationError) Error () (? string) { return "x509: invalid signature: parent certificate cannot sign this kind of certificate" }
386 func (@"".h·2 @"".UnhandledCriticalExtension) Error () (? string) { return "x509: unhandled critical extension" }
390 func @"".ParseCRL (@"".crlBytes·3 []byte) (@"".certList·1 *@"crypto/x509/pkix".CertificateList, @"".err·2 error)
391 func @"".ParseDERCRL (@"".derBytes·3 []byte) (@"".certList·1 *@"crypto/x509/pkix".CertificateList, @"".err·2 error)
392 type @"crypto/x509/pkix".AttributeTypeAndValueSET struct { Type @"encoding/asn1".ObjectIdentifier; Value [][]@"crypto/x509/pkix".AttributeTypeAndValue "asn1:\"set\"" }
393 type @"".CertificateRequest struct { Raw []byte; RawTBSCertificateRequest []byte; RawSubjectPublicKeyInfo []byte; RawSubject []byte; Version int; Signature []byte; SignatureAlgorithm @"".SignatureAlgorithm; PublicKeyAlgorithm @"".PublicKeyAlgorithm; PublicKey interface {}; Subject @"crypto/x509/pkix".Name; Attributes []@"crypto/x509/pkix".AttributeTypeAndValueSET; Extensions []@"crypto/x509/pkix".Extension; ExtraExtensions []@"crypto/x509/pkix".Extension; DNSNames []string; EmailAddresses []string; IPAddresses []@"net".IP }
412 go13ldencoding/pem.acrypto/aes.acrypto/cipher.acrypto/des.acrypto/md5.aencoding/hex.aerrors.aio.astrings.acrypto/rsa.aencoding/asn1.amath/big.a$crypto/x509/pkix.a
426 6 =5c( Tgclocals·4d8f4351ae24f7a880f472246ed2ba20 Tgclocals·6fff771ec9c1bcdbce8dda15d5cc0dea fprebuilts/go/linux-x86/src/crypto/x509/cert_pool.go?D"".(*CertPool).findVerifiedParents ? ?dH?% H?D$?H;A?? H?? 1?1?1?H??$? H??$? H?$? 1?H??$? H??$? H??$? H??$? 1?H9?uH?? ?1?H?L$pH??H?L$xH??H??$? H??$? H??? H?? ?? H??$? H?? ? H??? H?H?$H?KH?L$H?KH?L$? H?L$H?D$ H? H?$H??$? H?+H?l$H?L$`H?L$H?D$hH?D$? H?\$ H?? ?? H?H?KH?sH?T$pH??$? H?L$xH?? ?? H??$? H?? ?^ H?^`H?H?$H?KH?L$H?KH?L$? H?L$H?D$ H? H?$H??$? H?kH?l$H?L$`H?L$H?D$hH?D$? H?\$ H?? ?? H?H?KH?sH?T$pH?L$xH??H??$? H??$? 1?H??$? H?D$HH??$? H??H?l$HH9??? H?D$XH?H?L$PH??$? H?$H??$? H?? ?e H?KH?CH?k H??$? H??$? H?T$@H??$? H9??, H??H?+H?l$? H?D$H?\$H??$? H??$? H?? ?? H??$? H??$? H??$? H??H??H9?w;H??$? H??H?l$@H?+H?D$XH?L$PH??H??H?l$HH9?????H?? ?H?- H?,$H?L$H?D$H?T$H?\$ ? H?L$(H?D$0H?T$8H??H??H??$? H??$? H??$? ?w???H??$? H?? t1H?KH?CH?k H?l$@H9?sH??H?+H??$? ?K???? ???? ?????????????????[?????????? ?!???
451 0runtime.morestack_noctxt ?? """.autotmp_0037 ?type.*int "".autotmp_0036 ?type.int "".autotmp_0035 type.int "".autotmp_0034 type.[]int "".autotmp_0033 type.[]int "".autotmp_0032 type.string "".autotmp_0031 type.int "".autotmp_0030 /type.[]int "".autotmp_0029 ?type.string "".autotmp_0028 ?type.int "".c ?type.int "".candidates ?type.[]int "".err `type.error "".errCert P(type.*"".Certificate "".parents type.[]int "".cert (type.*"".Certificate "".s "type.*"".CertPool (?R?????? ? \@[??R?7V3 ???o@ Tgclocals·b5a15269b12500af4cc65bb54d28c4af Tgclocals·a5dbc9c36a121ef276b334de6ca353b0 fprebuilts/go/linux-x86/src/crypto/x509/cert_pool.go?,"".(*CertPool).AddCert ? ?dH?% H?D$?H;A?A H??? H??$ 1?H9?u]H? H??$? H?$? " H? H?$H??$? H?\$H?D$ ? H?\$H?H?$H?KH?L$? H??$ H?? ?? H?SH?CH?k H??$? 1?H??$? H?D$PH??$? H??H?l$PH9?}PH?D$hH?(H?L$XH?,$H??$ H?\$? ?\$?? tH??? ?H?D$hH?L$XH??H??H?l$PH9?|?H??$ H?kH?l$@H??$ H?SH?CH?K H??H??H9??i H?kH??H??$ ?= ?9 H?+H??$ H??? H?? ?J H?$ H??$ H?? ?? H??x H?|$H?H?H?KH?OH?KH?O? H?L$ H?D$(H??$? H??$? H??$? H??$? H? H?$H??$ H?+H?l$H??$? H?L$H??$? H?D$? H?\$ H?? ?[ H?H?CH?KH??$? H??$? H??$? H??H??H9??? H??H??H??$? H??$? H??$? H??H?l$@H?+H? H?$H??$ H?+H?l$H??$? H?\$H??$? H?\$? H?$ H??$ H?? ?l H?^HH?|$H?H?H?KH?OH?KH?O? H?L$ H?D$(H??$? H??$? H?L$pH?D$xH? H?$H??$ H?kH?l$H??$? H?L$H??$? H?D$? H?\$ H?? ?? H?H?CH?KH??$? H??$? H??$? H??H??H9?wmH??H??H??$? H??$? H??$? H??H?l$@H?+H? H?$H??$ H?kH?l$H??$? H?\$H??$? H?\$? H??? ?H?- H?,$H?T$H?D$H?L$H?\$ ? H?T$(H?D$0H?L$8?[?????&????????H?- H?,$H?T$H?D$H?L$H?\$ ? H?T$(H?D$0H?L$8????????????????H?$H?l$? ????H? H?$H?T$H?D$H?L$H?l$ ? H?T$(H?D$0H?L$8H??$ H?? tKH??H?D$HH??H?kH?K H?T$`?= u H?S?0???L?CL?$H?T$? H?T$`H?D$H???????D???? ????6
482 hr]W CK?H???? <