Home | History | Annotate | Download | only in x509

Lines Matching defs:String

195 var algoName = [...]string{
213 func (algo SignatureAlgorithm) String() string {
684 OCSPServer []string
685 IssuingCertificateURL []string
688 DNSNames []string
689 EmailAddresses []string
694 PermittedDNSDomains []string
697 CRLDistributionPoints []string
709 func (e InsecureAlgorithmError) Error() string {
718 func (ConstraintViolationError) Error() string {
884 func (h UnhandledCriticalExtension) Error() string {
906 Name string `asn1:"tag:2,optional,ia5"`
1020 func parseSANExtension(value []byte) (dnsNames, emailAddresses []string, ipAddresses []net.IP, err error) {
1035 // iPAddress [7] OCTET STRING,
1059 emailAddresses = append(emailAddresses, string(v.Bytes))
1061 dnsNames = append(dnsNames, string(v.Bytes))
1238 out.CRLDistributionPoints = append(out.CRLDistributionPoints, string(n.Bytes))
1318 out.OCSPServer = append(out.OCSPServer, string(v.Location.Bytes))
1320 out.IssuingCertificateURL = append(out.IssuingCertificateURL, string(v.Location.Bytes))
1435 func marshalSANs(dnsNames, emailAddresses []string, ipAddresses []net.IP) (derBytes []byte, err error) {
1808 // pemCRLPrefix is the magic string that indicates that we have a PEM encoded
1936 DNSNames []string
1937 EmailAddresses []string
2080 specifiedExtensions := make(map[string]bool)
2089 specifiedExtensions[atv.Type.String()] = true
2096 if specifiedExtensions[e.Id.String()] {