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.TypeOf(BitString{})
asn1.go#L864: case *BitString:
marshal.go#L275: type bitStringEncoder BitString
marshal.go#L472: return bitStringEncoder(value.Interface().(BitString)), nil
crypto/x509
parser.go#L320: var usageBits asn1.BitString
parser.go#L918: var spk asn1.BitString
parser.go#L974: var signature asn1.BitString
parser.go#L1073: 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#L983: Reason asn1.BitString `asn1:"optional,tag:1"`
x509.go#L1331: ext.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})
x509.go#L1614: encodedPublicKey := asn1.BitString{BitLength: len(publicKeyBytes) * 8, Bytes: publicKeyBytes}
x509.go#L1656: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
x509.go#L1770: SignatureValue: asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
x509.go#L1833: SignatureValue asn1.BitString
x509.go#L2051: PublicKey: asn1.BitString{
x509.go#L2081: SignatureValue: asn1.BitString{
x509.go#L2266: SignatureValue asn1.BitString
x509.go#L2450: 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.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |