Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseIA5String (0.17 sec)

  1. src/encoding/asn1/asn1.go

    		// one of which will not expire until 2027.
    		(bool(ampersand) && b == '&')
    }
    
    // IA5String
    
    // parseIA5String parses an ASN.1 IA5String (ASCII string) from the given
    // byte slice and returns it.
    func parseIA5String(bytes []byte) (ret string, err error) {
    	for _, b := range bytes {
    		if b >= utf8.RuneSelf {
    			err = SyntaxError{"IA5String contains invalid character"}
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
Back to top