type encoding/asn1.BitString
28 uses
encoding/asn1 (current package)
asn1.go#L159: type BitString struct {
asn1.go#L166: func (b BitString) At(i int) int {
asn1.go#L177: func (b BitString) RightAlign() []byte {
asn1.go#L194: func parseBitString(bytes []byte) (ret BitString, err error) {
asn1.go#L656: bitStringType = reflect.TypeOf(BitString{})
asn1.go#L861: case *BitString:
marshal.go#L275: type bitStringEncoder BitString
marshal.go#L472: return bitStringEncoder(value.Interface().(BitString)), nil
crypto/x509
sec1.go#L28: PublicKey asn1.BitString `asn1:"optional,explicit,tag:1"`
sec1.go#L60: PublicKey: asn1.BitString{Bytes: elliptic.Marshal(key.Curve, key.X, key.Y)},
x509.go#L45: BitString asn1.BitString
x509.go#L129: BitString: asn1.BitString{
x509.go#L145: SignatureValue asn1.BitString
x509.go#L157: UniqueId asn1.BitString `asn1:"optional,tag:1"`
x509.go#L158: SubjectUniqueId asn1.BitString `asn1:"optional,tag:2"`
x509.go#L173: PublicKey asn1.BitString
x509.go#L908: Reason asn1.BitString `asn1:"optional,tag:1"`
x509.go#L1468: var usageBits asn1.BitString
x509.go#L1925: ext.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})
x509.go#L2194: encodedPublicKey := asn1.BitString{BitLength: len(publicKeyBytes) * 8, Bytes: publicKeyBytes}
x509.go#L2237: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
x509.go#L2351: SignatureValue: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
x509.go#L2414: SignatureValue asn1.BitString
x509.go#L2624: PublicKey: asn1.BitString{
x509.go#L2654: SignatureValue: asn1.BitString{
x509.go#L2863: SignatureValue: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
crypto/x509/pkix
pkix.go#L289: SignatureValue asn1.BitString
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L471: func (s *String) ReadASN1BitString(out *encoding_asn1.BitString) bool {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |