type vendor/golang.org/x/crypto/cryptobyte.String

131 uses

	vendor/golang.org/x/crypto/cryptobyte (current package)
		asn1.go#L236: func (s *String) ReadASN1Boolean(out *bool) bool {
		asn1.go#L237: 	var bytes String
		asn1.go#L259: func (s *String) ReadASN1Integer(out interface{}) bool {
		asn1.go#L303: func (s *String) readASN1BigInt(out *big.Int) bool {
		asn1.go#L304: 	var bytes String
		asn1.go#L323: func (s *String) readASN1Int64(out *int64) bool {
		asn1.go#L324: 	var bytes String
		asn1.go#L346: func (s *String) readASN1Uint64(out *uint64) bool {
		asn1.go#L347: 	var bytes String
		asn1.go#L374: func (s *String) ReadASN1Int64WithTag(out *int64, tag asn1.Tag) bool {
		asn1.go#L375: 	var bytes String
		asn1.go#L381: func (s *String) ReadASN1Enum(out *int) bool {
		asn1.go#L382: 	var bytes String
		asn1.go#L394: func (s *String) readBase128Int(out *int) bool {
		asn1.go#L413: func (s *String) ReadASN1ObjectIdentifier(out *encoding_asn1.ObjectIdentifier) bool {
		asn1.go#L414: 	var bytes String
		asn1.go#L452: func (s *String) ReadASN1GeneralizedTime(out *time.Time) bool {
		asn1.go#L453: 	var bytes String
		asn1.go#L471: func (s *String) ReadASN1BitString(out *encoding_asn1.BitString) bool {
		asn1.go#L472: 	var bytes String
		asn1.go#L494: func (s *String) ReadASN1BitStringAsBytes(out *[]byte) bool {
		asn1.go#L495: 	var bytes String
		asn1.go#L511: func (s *String) ReadASN1Bytes(out *[]byte, tag asn1.Tag) bool {
		asn1.go#L512: 	return s.ReadASN1((*String)(out), tag)
		asn1.go#L520: func (s *String) ReadASN1(out *String, tag asn1.Tag) bool {
		asn1.go#L533: func (s *String) ReadASN1Element(out *String, tag asn1.Tag) bool {
		asn1.go#L546: func (s *String) ReadAnyASN1(out *String, outTag *asn1.Tag) bool {
		asn1.go#L555: func (s *String) ReadAnyASN1Element(out *String, outTag *asn1.Tag) bool {
		asn1.go#L561: func (s String) PeekASN1Tag(tag asn1.Tag) bool {
		asn1.go#L570: func (s *String) SkipASN1(tag asn1.Tag) bool {
		asn1.go#L571: 	var unused String
		asn1.go#L579: func (s *String) ReadOptionalASN1(out *String, outPresent *bool, tag asn1.Tag) bool {
		asn1.go#L592: func (s *String) SkipOptionalASN1(tag asn1.Tag) bool {
		asn1.go#L596: 	var unused String
		asn1.go#L605: func (s *String) ReadOptionalASN1Integer(out interface{}, tag asn1.Tag, defaultValue interface{}) bool {
		asn1.go#L610: 	var i String
		asn1.go#L643: func (s *String) ReadOptionalASN1OctetString(out *[]byte, outPresent *bool, tag asn1.Tag) bool {
		asn1.go#L645: 	var child String
		asn1.go#L653: 		var oct String
		asn1.go#L667: func (s *String) ReadOptionalASN1Boolean(out *bool, defaultValue bool) bool {
		asn1.go#L669: 	var child String
		asn1.go#L682: func (s *String) readASN1(out *String, outTag *asn1.Tag, skipHeader bool) bool {
		asn1.go#L720: 		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#L342: 		inner cryptobyte.String
		ecdsa.go#L344: 	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#L349: 	s := cryptobyte.String(data)
		handshake_messages.go#L357: 	var cipherSuites cryptobyte.String
		handshake_messages.go#L383: 	var extensions cryptobyte.String
		handshake_messages.go#L390: 		var extData cryptobyte.String
		handshake_messages.go#L399: 			var nameList cryptobyte.String
		handshake_messages.go#L405: 				var serverName cryptobyte.String
		handshake_messages.go#L427: 			var ignored cryptobyte.String
		handshake_messages.go#L436: 			var curves cryptobyte.String
		handshake_messages.go#L459: 			var sigAndAlgs cryptobyte.String
		handshake_messages.go#L473: 			var sigAndAlgs cryptobyte.String
		handshake_messages.go#L493: 			var protoList cryptobyte.String
		handshake_messages.go#L498: 				var proto cryptobyte.String
		handshake_messages.go#L509: 			var versList cryptobyte.String
		handshake_messages.go#L528: 			var clientShares cryptobyte.String
		handshake_messages.go#L554: 			var identities cryptobyte.String
		handshake_messages.go#L567: 			var binders cryptobyte.String
		handshake_messages.go#L734: 	s := cryptobyte.String(data)
		handshake_messages.go#L749: 	var extensions cryptobyte.String
		handshake_messages.go#L756: 		var extData cryptobyte.String
		handshake_messages.go#L773: 			var protoList cryptobyte.String
		handshake_messages.go#L777: 			var proto cryptobyte.String
		handshake_messages.go#L784: 			var sctList cryptobyte.String
		handshake_messages.go#L875: 	s := cryptobyte.String(data)
		handshake_messages.go#L877: 	var extensions cryptobyte.String
		handshake_messages.go#L885: 		var extData cryptobyte.String
		handshake_messages.go#L893: 			var protoList cryptobyte.String
		handshake_messages.go#L897: 			var proto cryptobyte.String
		handshake_messages.go#L954: 	s := cryptobyte.String(data)
		handshake_messages.go#L1014: 	s := cryptobyte.String(data)
		handshake_messages.go#L1016: 	var extensions cryptobyte.String
		handshake_messages.go#L1029: 		var extData cryptobyte.String
		handshake_messages.go#L1129: 	s := cryptobyte.String(data)
		handshake_messages.go#L1131: 	var context, extensions cryptobyte.String
		handshake_messages.go#L1141: 		var extData cryptobyte.String
		handshake_messages.go#L1153: 			var sigAndAlgs cryptobyte.String
		handshake_messages.go#L1166: 			var sigAndAlgs cryptobyte.String
		handshake_messages.go#L1179: 			var auths cryptobyte.String
		handshake_messages.go#L1350: 	s := cryptobyte.String(data)
		handshake_messages.go#L1352: 	var context cryptobyte.String
		handshake_messages.go#L1366: func unmarshalCertificate(s *cryptobyte.String, certificate *Certificate) bool {
		handshake_messages.go#L1367: 	var certList cryptobyte.String
		handshake_messages.go#L1373: 		var extensions cryptobyte.String
		handshake_messages.go#L1381: 			var extData cryptobyte.String
		handshake_messages.go#L1400: 				var sctList cryptobyte.String
		handshake_messages.go#L1481: 	s := cryptobyte.String(data)
		handshake_messages.go#L1561: 	s := cryptobyte.String(data)
		handshake_messages.go#L1738: 	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
		x509.go#L1149: 	outer := cryptobyte.String(e.Value)
		x509.go#L1150: 	var toplevel, permitted, excluded cryptobyte.String
		x509.go#L1168: 	getValues := func(subtrees cryptobyte.String) (dnsNames []string, ips []*net.IPNet, emails, uriDomains []string, err error) {
		x509.go#L1170: 			var seq, value cryptobyte.String