Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BitLength (0.18 sec)

  1. src/crypto/x509/x509.go

    		return nil, err
    	}
    
    	pkix := pkixPublicKey{
    		Algo: publicKeyAlgorithm,
    		BitString: asn1.BitString{
    			Bytes:     publicKeyBytes,
    			BitLength: 8 * len(publicKeyBytes),
    		},
    	}
    
    	ret, _ := asn1.Marshal(pkix)
    	return ret, nil
    }
    
    // These structures reflect the ASN.1 structure of X.509 certificates.:
    
    type certificate struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top