type encoding/asn1.BitString
33 uses
encoding/asn1 (current package)
asn1.go#L160: type BitString struct {
asn1.go#L167: func (b BitString) At(i int) int {
asn1.go#L178: func (b BitString) RightAlign() []byte {
asn1.go#L195: func parseBitString(bytes []byte) (ret BitString, err error) {
asn1.go#L659: bitStringType = reflect.TypeFor[BitString]()
asn1.go#L864: case *BitString:
marshal.go#L273: type bitStringEncoder BitString
marshal.go#L469: return bitStringEncoder(value.Interface().(BitString)), nil
crypto/x509
parser.go#L321: var usageBits asn1.BitString
parser.go#L949: var spk asn1.BitString
parser.go#L1005: var signature asn1.BitString
parser.go#L1108: var signature asn1.BitString
sec1.go#L31: PublicKey asn1.BitString `asn1:"optional,explicit,tag:1"`
sec1.go#L66: PublicKey: asn1.BitString{Bytes: elliptic.Marshal(key.Curve, key.X, key.Y)},
sec1.go#L76: PublicKey: asn1.BitString{Bytes: key.PublicKey().Bytes()},
x509.go#L60: BitString asn1.BitString
x509.go#L161: BitString: asn1.BitString{
x509.go#L176: SignatureValue asn1.BitString
x509.go#L188: UniqueId asn1.BitString `asn1:"optional,tag:1"`
x509.go#L189: SubjectUniqueId asn1.BitString `asn1:"optional,tag:2"`
x509.go#L204: PublicKey asn1.BitString
x509.go#L1002: Reason asn1.BitString `asn1:"optional,tag:1"`
x509.go#L1353: ext.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})
x509.go#L1675: encodedPublicKey := asn1.BitString{BitLength: len(publicKeyBytes) * 8, Bytes: publicKeyBytes}
x509.go#L1701: SignatureValue: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
x509.go#L1798: SignatureValue: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
x509.go#L1861: SignatureValue asn1.BitString
x509.go#L2077: PublicKey: asn1.BitString{
x509.go#L2099: SignatureValue: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
x509.go#L2281: SignatureValue asn1.BitString
x509.go#L2451: SignatureValue: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
crypto/x509/pkix
pkix.go#L291: SignatureValue asn1.BitString
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L550: func (s *String) ReadASN1BitString(out *encoding_asn1.BitString) bool {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |