type vendor/golang.org/x/crypto/cryptobyte.String
175 uses
vendor/golang.org/x/crypto/cryptobyte (current package)
asn1.go#L249: func (s *String) ReadASN1Boolean(out *bool) bool {
asn1.go#L250: var bytes String
asn1.go#L272: func (s *String) ReadASN1Integer(out interface{}) bool {
asn1.go#L316: func (s *String) readASN1BigInt(out *big.Int) bool {
asn1.go#L317: var bytes String
asn1.go#L336: func (s *String) readASN1Int64(out *int64) bool {
asn1.go#L337: var bytes String
asn1.go#L359: func (s *String) readASN1Uint64(out *uint64) bool {
asn1.go#L360: var bytes String
asn1.go#L387: func (s *String) ReadASN1Int64WithTag(out *int64, tag asn1.Tag) bool {
asn1.go#L388: var bytes String
asn1.go#L394: func (s *String) ReadASN1Enum(out *int) bool {
asn1.go#L395: var bytes String
asn1.go#L407: func (s *String) readBase128Int(out *int) bool {
asn1.go#L431: func (s *String) ReadASN1ObjectIdentifier(out *encoding_asn1.ObjectIdentifier) bool {
asn1.go#L432: var bytes String
asn1.go#L470: func (s *String) ReadASN1GeneralizedTime(out *time.Time) bool {
asn1.go#L471: var bytes String
asn1.go#L491: func (s *String) ReadASN1UTCTime(out *time.Time) bool {
asn1.go#L492: var bytes String
asn1.go#L528: func (s *String) ReadASN1BitString(out *encoding_asn1.BitString) bool {
asn1.go#L529: var bytes String
asn1.go#L551: func (s *String) ReadASN1BitStringAsBytes(out *[]byte) bool {
asn1.go#L552: var bytes String
asn1.go#L568: func (s *String) ReadASN1Bytes(out *[]byte, tag asn1.Tag) bool {
asn1.go#L569: return s.ReadASN1((*String)(out), tag)
asn1.go#L577: func (s *String) ReadASN1(out *String, tag asn1.Tag) bool {
asn1.go#L590: func (s *String) ReadASN1Element(out *String, tag asn1.Tag) bool {
asn1.go#L603: func (s *String) ReadAnyASN1(out *String, outTag *asn1.Tag) bool {
asn1.go#L612: func (s *String) ReadAnyASN1Element(out *String, outTag *asn1.Tag) bool {
asn1.go#L618: func (s String) PeekASN1Tag(tag asn1.Tag) bool {
asn1.go#L627: func (s *String) SkipASN1(tag asn1.Tag) bool {
asn1.go#L628: var unused String
asn1.go#L636: func (s *String) ReadOptionalASN1(out *String, outPresent *bool, tag asn1.Tag) bool {
asn1.go#L649: func (s *String) SkipOptionalASN1(tag asn1.Tag) bool {
asn1.go#L653: var unused String
asn1.go#L662: func (s *String) ReadOptionalASN1Integer(out interface{}, tag asn1.Tag, defaultValue interface{}) bool {
asn1.go#L667: var i String
asn1.go#L700: func (s *String) ReadOptionalASN1OctetString(out *[]byte, outPresent *bool, tag asn1.Tag) bool {
asn1.go#L702: var child String
asn1.go#L710: var oct String
asn1.go#L724: func (s *String) ReadOptionalASN1Boolean(out *bool, defaultValue bool) bool {
asn1.go#L726: var child String
asn1.go#L739: func (s *String) readASN1(out *String, outTag *asn1.Tag, skipHeader bool) bool {
asn1.go#L777: lenBytes := String((*s)[2 : 2+lenLen])
string.go#L22: type String []byte
string.go#L26: func (s *String) read(n int) []byte {
string.go#L36: func (s *String) Skip(n int) bool {
string.go#L42: func (s *String) ReadUint8(out *uint8) bool {
string.go#L53: func (s *String) ReadUint16(out *uint16) bool {
string.go#L64: func (s *String) ReadUint24(out *uint32) bool {
string.go#L75: func (s *String) ReadUint32(out *uint32) bool {
string.go#L84: func (s *String) readUnsigned(out *uint32, length int) bool {
string.go#L98: func (s *String) readLengthPrefixed(lenLen int, outChild *String) bool {
string.go#L118: func (s *String) ReadUint8LengthPrefixed(out *String) bool {
string.go#L125: func (s *String) ReadUint16LengthPrefixed(out *String) bool {
string.go#L132: func (s *String) ReadUint24LengthPrefixed(out *String) bool {
string.go#L138: func (s *String) ReadBytes(out *[]byte, n int) bool {
string.go#L149: func (s *String) CopyBytes(out []byte) bool {
string.go#L159: func (s String) Empty() bool {
crypto/ecdsa
ecdsa.go#L343: inner cryptobyte.String
ecdsa.go#L345: input := cryptobyte.String(sig)
crypto/tls
handshake_messages.go#L42: func readUint64(s *cryptobyte.String, out *uint64) bool {
handshake_messages.go#L53: func readUint8LengthPrefixed(s *cryptobyte.String, out *[]byte) bool {
handshake_messages.go#L54: return s.ReadUint8LengthPrefixed((*cryptobyte.String)(out))
handshake_messages.go#L59: func readUint16LengthPrefixed(s *cryptobyte.String, out *[]byte) bool {
handshake_messages.go#L60: return s.ReadUint16LengthPrefixed((*cryptobyte.String)(out))
handshake_messages.go#L65: func readUint24LengthPrefixed(s *cryptobyte.String, out *[]byte) bool {
handshake_messages.go#L66: return s.ReadUint24LengthPrefixed((*cryptobyte.String)(out))
handshake_messages.go#L348: s := cryptobyte.String(data)
handshake_messages.go#L356: var cipherSuites cryptobyte.String
handshake_messages.go#L382: var extensions cryptobyte.String
handshake_messages.go#L389: var extData cryptobyte.String
handshake_messages.go#L398: var nameList cryptobyte.String
handshake_messages.go#L404: var serverName cryptobyte.String
handshake_messages.go#L426: var ignored cryptobyte.String
handshake_messages.go#L435: var curves cryptobyte.String
handshake_messages.go#L458: var sigAndAlgs cryptobyte.String
handshake_messages.go#L472: var sigAndAlgs cryptobyte.String
handshake_messages.go#L492: var protoList cryptobyte.String
handshake_messages.go#L497: var proto cryptobyte.String
handshake_messages.go#L508: var versList cryptobyte.String
handshake_messages.go#L527: var clientShares cryptobyte.String
handshake_messages.go#L553: var identities cryptobyte.String
handshake_messages.go#L566: var binders cryptobyte.String
handshake_messages.go#L733: s := cryptobyte.String(data)
handshake_messages.go#L748: var extensions cryptobyte.String
handshake_messages.go#L755: var extData cryptobyte.String
handshake_messages.go#L772: var protoList cryptobyte.String
handshake_messages.go#L776: var proto cryptobyte.String
handshake_messages.go#L783: var sctList cryptobyte.String
handshake_messages.go#L874: s := cryptobyte.String(data)
handshake_messages.go#L876: var extensions cryptobyte.String
handshake_messages.go#L884: var extData cryptobyte.String
handshake_messages.go#L892: var protoList cryptobyte.String
handshake_messages.go#L896: var proto cryptobyte.String
handshake_messages.go#L953: s := cryptobyte.String(data)
handshake_messages.go#L1013: s := cryptobyte.String(data)
handshake_messages.go#L1015: var extensions cryptobyte.String
handshake_messages.go#L1028: var extData cryptobyte.String
handshake_messages.go#L1128: s := cryptobyte.String(data)
handshake_messages.go#L1130: var context, extensions cryptobyte.String
handshake_messages.go#L1140: var extData cryptobyte.String
handshake_messages.go#L1152: var sigAndAlgs cryptobyte.String
handshake_messages.go#L1165: var sigAndAlgs cryptobyte.String
handshake_messages.go#L1178: var auths cryptobyte.String
handshake_messages.go#L1349: s := cryptobyte.String(data)
handshake_messages.go#L1351: var context cryptobyte.String
handshake_messages.go#L1365: func unmarshalCertificate(s *cryptobyte.String, certificate *Certificate) bool {
handshake_messages.go#L1366: var certList cryptobyte.String
handshake_messages.go#L1372: var extensions cryptobyte.String
handshake_messages.go#L1380: var extData cryptobyte.String
handshake_messages.go#L1399: var sctList cryptobyte.String
handshake_messages.go#L1480: s := cryptobyte.String(data)
handshake_messages.go#L1560: s := cryptobyte.String(data)
handshake_messages.go#L1737: s := cryptobyte.String(data)
ticket.go#L55: s := cryptobyte.String(data)
ticket.go#L63: var certList cryptobyte.String
ticket.go#L104: s := cryptobyte.String(data)
crypto/x509
parser.go#L109: func parseName(raw cryptobyte.String) (*pkix.RDNSequence, error) {
parser.go#L117: var set cryptobyte.String
parser.go#L122: var atav cryptobyte.String
parser.go#L130: var rawValue cryptobyte.String
parser.go#L149: func parseAI(der cryptobyte.String) (pkix.AlgorithmIdentifier, error) {
parser.go#L157: var params cryptobyte.String
parser.go#L167: func parseValidity(der cryptobyte.String) (time.Time, time.Time, error) {
parser.go#L174: var utc cryptobyte.String
parser.go#L221: func parseExtension(der cryptobyte.String) (pkix.Extension, error) {
parser.go#L231: var val cryptobyte.String
parser.go#L240: der := cryptobyte.String(keyData.PublicKey.RightAlign())
parser.go#L273: paramsDer := cryptobyte.String(keyData.Algorithm.Parameters.FullBytes)
parser.go#L315: paramsDer := cryptobyte.String(keyData.Algorithm.Parameters.FullBytes)
parser.go#L332: func parseKeyUsageExtension(der cryptobyte.String) (KeyUsage, error) {
parser.go#L347: func parseBasicConstraintsExtension(der cryptobyte.String) (bool, int, error) {
parser.go#L368: func forEachSAN(der cryptobyte.String, callback func(tag int, data []byte) error) error {
parser.go#L373: var san cryptobyte.String
parser.go#L386: func parseSANExtension(der cryptobyte.String) (dnsNames, emailAddresses []string, ipAddresses []net.IP, uris []*url.URL, err error) {
parser.go#L431: func parseExtKeyUsageExtension(der cryptobyte.String) ([]ExtKeyUsage, []asn1.ObjectIdentifier, error) {
parser.go#L451: func parseCertificatePoliciesExtension(der cryptobyte.String) ([]asn1.ObjectIdentifier, error) {
parser.go#L457: var cp cryptobyte.String
parser.go#L512: outer := cryptobyte.String(e.Value)
parser.go#L513: var toplevel, permitted, excluded cryptobyte.String
parser.go#L531: getValues := func(subtrees cryptobyte.String) (dnsNames []string, ips []*net.IPNet, emails, uriDomains []string, err error) {
parser.go#L533: var seq, value cryptobyte.String
parser.go#L705: val := cryptobyte.String(e.Value)
parser.go#L710: var dpDER cryptobyte.String
parser.go#L714: var dpNameDER cryptobyte.String
parser.go#L729: var uri cryptobyte.String
parser.go#L739: val := cryptobyte.String(e.Value)
parser.go#L740: var akid cryptobyte.String
parser.go#L757: val := cryptobyte.String(e.Value)
parser.go#L758: var skid cryptobyte.String
parser.go#L774: val := cryptobyte.String(e.Value)
parser.go#L779: var aiaDER cryptobyte.String
parser.go#L816: input := cryptobyte.String(der)
parser.go#L828: var tbs cryptobyte.String
parser.go#L863: var sigAISeq cryptobyte.String
parser.go#L870: var outerSigAISeq cryptobyte.String
parser.go#L883: var issuerSeq cryptobyte.String
parser.go#L894: var validity cryptobyte.String
parser.go#L903: var subjectSeq cryptobyte.String
parser.go#L914: var spki cryptobyte.String
parser.go#L922: var pkAISeq cryptobyte.String
parser.go#L951: var extensions cryptobyte.String
parser.go#L961: var extension cryptobyte.String