type vendor/golang.org/x/crypto/cryptobyte.String
194 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#L273: func (s *String) ReadASN1Integer(out interface{}) bool {
asn1.go#L315: func (s *String) readASN1BigInt(out *big.Int) bool {
asn1.go#L316: var bytes String
asn1.go#L335: func (s *String) readASN1Bytes(out *[]byte) bool {
asn1.go#L336: var bytes String
asn1.go#L350: func (s *String) readASN1Int64(out *int64) bool {
asn1.go#L351: var bytes String
asn1.go#L373: func (s *String) readASN1Uint64(out *uint64) bool {
asn1.go#L374: var bytes String
asn1.go#L401: func (s *String) ReadASN1Int64WithTag(out *int64, tag asn1.Tag) bool {
asn1.go#L402: var bytes String
asn1.go#L408: func (s *String) ReadASN1Enum(out *int) bool {
asn1.go#L409: var bytes String
asn1.go#L421: func (s *String) readBase128Int(out *int) bool {
asn1.go#L453: func (s *String) ReadASN1ObjectIdentifier(out *encoding_asn1.ObjectIdentifier) bool {
asn1.go#L454: var bytes String
asn1.go#L492: func (s *String) ReadASN1GeneralizedTime(out *time.Time) bool {
asn1.go#L493: var bytes String
asn1.go#L513: func (s *String) ReadASN1UTCTime(out *time.Time) bool {
asn1.go#L514: var bytes String
asn1.go#L550: func (s *String) ReadASN1BitString(out *encoding_asn1.BitString) bool {
asn1.go#L551: var bytes String
asn1.go#L573: func (s *String) ReadASN1BitStringAsBytes(out *[]byte) bool {
asn1.go#L574: var bytes String
asn1.go#L590: func (s *String) ReadASN1Bytes(out *[]byte, tag asn1.Tag) bool {
asn1.go#L591: return s.ReadASN1((*String)(out), tag)
asn1.go#L599: func (s *String) ReadASN1(out *String, tag asn1.Tag) bool {
asn1.go#L612: func (s *String) ReadASN1Element(out *String, tag asn1.Tag) bool {
asn1.go#L625: func (s *String) ReadAnyASN1(out *String, outTag *asn1.Tag) bool {
asn1.go#L634: func (s *String) ReadAnyASN1Element(out *String, outTag *asn1.Tag) bool {
asn1.go#L640: func (s String) PeekASN1Tag(tag asn1.Tag) bool {
asn1.go#L649: func (s *String) SkipASN1(tag asn1.Tag) bool {
asn1.go#L650: var unused String
asn1.go#L658: func (s *String) ReadOptionalASN1(out *String, outPresent *bool, tag asn1.Tag) bool {
asn1.go#L671: func (s *String) SkipOptionalASN1(tag asn1.Tag) bool {
asn1.go#L675: var unused String
asn1.go#L683: func (s *String) ReadOptionalASN1Integer(out interface{}, tag asn1.Tag, defaultValue interface{}) bool {
asn1.go#L685: var i String
asn1.go#L715: func (s *String) ReadOptionalASN1OctetString(out *[]byte, outPresent *bool, tag asn1.Tag) bool {
asn1.go#L717: var child String
asn1.go#L725: var oct String
asn1.go#L739: func (s *String) ReadOptionalASN1Boolean(out *bool, defaultValue bool) bool {
asn1.go#L741: var child String
asn1.go#L754: func (s *String) readASN1(out *String, outTag *asn1.Tag, skipHeader bool) bool {
asn1.go#L792: 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#L86: func (s *String) ReadUint64(out *uint64) bool {
string.go#L95: func (s *String) readUnsigned(out *uint32, length int) bool {
string.go#L109: func (s *String) readLengthPrefixed(lenLen int, outChild *String) bool {
string.go#L129: func (s *String) ReadUint8LengthPrefixed(out *String) bool {
string.go#L136: func (s *String) ReadUint16LengthPrefixed(out *String) bool {
string.go#L143: func (s *String) ReadUint24LengthPrefixed(out *String) bool {
string.go#L149: func (s *String) ReadBytes(out *[]byte, n int) bool {
string.go#L160: func (s *String) CopyBytes(out []byte) bool {
string.go#L170: func (s String) Empty() bool {
crypto/ecdsa
ecdsa.go#L550: var inner cryptobyte.String
ecdsa.go#L551: input := cryptobyte.String(sig)
ecdsa_legacy.go#L65: var inner cryptobyte.String
ecdsa_legacy.go#L66: input := cryptobyte.String(sig)
crypto/tls
handshake_messages.go#L43: func readUint64(s *cryptobyte.String, out *uint64) bool {
handshake_messages.go#L54: func readUint8LengthPrefixed(s *cryptobyte.String, out *[]byte) bool {
handshake_messages.go#L55: return s.ReadUint8LengthPrefixed((*cryptobyte.String)(out))
handshake_messages.go#L60: func readUint16LengthPrefixed(s *cryptobyte.String, out *[]byte) bool {
handshake_messages.go#L61: return s.ReadUint16LengthPrefixed((*cryptobyte.String)(out))
handshake_messages.go#L66: func readUint24LengthPrefixed(s *cryptobyte.String, out *[]byte) bool {
handshake_messages.go#L67: return s.ReadUint24LengthPrefixed((*cryptobyte.String)(out))
handshake_messages.go#L371: s := cryptobyte.String(data)
handshake_messages.go#L379: var cipherSuites cryptobyte.String
handshake_messages.go#L405: var extensions cryptobyte.String
handshake_messages.go#L413: var extData cryptobyte.String
handshake_messages.go#L427: var nameList cryptobyte.String
handshake_messages.go#L433: var serverName cryptobyte.String
handshake_messages.go#L455: var ignored cryptobyte.String
handshake_messages.go#L464: var curves cryptobyte.String
handshake_messages.go#L487: var sigAndAlgs cryptobyte.String
handshake_messages.go#L501: var sigAndAlgs cryptobyte.String
handshake_messages.go#L524: var protoList cryptobyte.String
handshake_messages.go#L529: var proto cryptobyte.String
handshake_messages.go#L540: var versList cryptobyte.String
handshake_messages.go#L559: var clientShares cryptobyte.String
handshake_messages.go#L590: var identities cryptobyte.String
handshake_messages.go#L603: var binders cryptobyte.String
handshake_messages.go#L775: s := cryptobyte.String(data)
handshake_messages.go#L790: var extensions cryptobyte.String
handshake_messages.go#L798: var extData cryptobyte.String
handshake_messages.go#L822: var protoList cryptobyte.String
handshake_messages.go#L826: var proto cryptobyte.String
handshake_messages.go#L833: var sctList cryptobyte.String
handshake_messages.go#L939: s := cryptobyte.String(data)
handshake_messages.go#L941: var extensions cryptobyte.String
handshake_messages.go#L949: var extData cryptobyte.String
handshake_messages.go#L957: var protoList cryptobyte.String
handshake_messages.go#L961: var proto cryptobyte.String
handshake_messages.go#L1027: s := cryptobyte.String(data)
handshake_messages.go#L1088: s := cryptobyte.String(data)
handshake_messages.go#L1090: var extensions cryptobyte.String
handshake_messages.go#L1103: var extData cryptobyte.String
handshake_messages.go#L1204: s := cryptobyte.String(data)
handshake_messages.go#L1206: var context, extensions cryptobyte.String
handshake_messages.go#L1216: var extData cryptobyte.String
handshake_messages.go#L1228: var sigAndAlgs cryptobyte.String
handshake_messages.go#L1241: var sigAndAlgs cryptobyte.String
handshake_messages.go#L1254: var auths cryptobyte.String
handshake_messages.go#L1426: s := cryptobyte.String(data)
handshake_messages.go#L1428: var context cryptobyte.String
handshake_messages.go#L1442: func unmarshalCertificate(s *cryptobyte.String, certificate *Certificate) bool {
handshake_messages.go#L1443: var certList cryptobyte.String
handshake_messages.go#L1449: var extensions cryptobyte.String
handshake_messages.go#L1457: var extData cryptobyte.String
handshake_messages.go#L1476: var sctList cryptobyte.String
handshake_messages.go#L1558: s := cryptobyte.String(data)
handshake_messages.go#L1639: s := cryptobyte.String(data)
handshake_messages.go#L1817: s := cryptobyte.String(data)
ticket.go#L183: s := cryptobyte.String(data)
ticket.go#L186: var extra cryptobyte.String
ticket.go#L233: var chainList cryptobyte.String
ticket.go#L238: var certList cryptobyte.String
crypto/x509
parser.go#L111: func parseName(raw cryptobyte.String) (*pkix.RDNSequence, error) {
parser.go#L119: var set cryptobyte.String
parser.go#L124: var atav cryptobyte.String
parser.go#L132: var rawValue cryptobyte.String
parser.go#L151: func parseAI(der cryptobyte.String) (pkix.AlgorithmIdentifier, error) {
parser.go#L159: var params cryptobyte.String
parser.go#L169: func parseTime(der *cryptobyte.String) (time.Time, error) {
parser.go#L186: func parseValidity(der cryptobyte.String) (time.Time, time.Time, error) {
parser.go#L199: func parseExtension(der cryptobyte.String) (pkix.Extension, error) {
parser.go#L209: var val cryptobyte.String
parser.go#L220: der := cryptobyte.String(keyData.PublicKey.RightAlign())
parser.go#L253: paramsDer := cryptobyte.String(params.FullBytes)
parser.go#L302: paramsDer := cryptobyte.String(params.FullBytes)
parser.go#L319: func parseKeyUsageExtension(der cryptobyte.String) (KeyUsage, error) {
parser.go#L334: func parseBasicConstraintsExtension(der cryptobyte.String) (bool, int, error) {
parser.go#L355: func forEachSAN(der cryptobyte.String, callback func(tag int, data []byte) error) error {
parser.go#L360: var san cryptobyte.String
parser.go#L373: func parseSANExtension(der cryptobyte.String) (dnsNames, emailAddresses []string, ipAddresses []net.IP, uris []*url.URL, err error) {
parser.go#L418: func parseExtKeyUsageExtension(der cryptobyte.String) ([]ExtKeyUsage, []asn1.ObjectIdentifier, error) {
parser.go#L438: func parseCertificatePoliciesExtension(der cryptobyte.String) ([]asn1.ObjectIdentifier, error) {
parser.go#L444: var cp cryptobyte.String
parser.go#L499: outer := cryptobyte.String(e.Value)
parser.go#L500: var toplevel, permitted, excluded cryptobyte.String
parser.go#L518: getValues := func(subtrees cryptobyte.String) (dnsNames []string, ips []*net.IPNet, emails, uriDomains []string, err error) {
parser.go#L520: var seq, value cryptobyte.String
parser.go#L692: val := cryptobyte.String(e.Value)
parser.go#L697: var dpDER cryptobyte.String
parser.go#L701: var dpNameDER cryptobyte.String
parser.go#L716: var uri cryptobyte.String
parser.go#L726: val := cryptobyte.String(e.Value)
parser.go#L727: var akid cryptobyte.String
parser.go#L744: val := cryptobyte.String(e.Value)
parser.go#L745: var skid cryptobyte.String
parser.go#L761: val := cryptobyte.String(e.Value)
parser.go#L766: var aiaDER cryptobyte.String
parser.go#L803: input := cryptobyte.String(der)
parser.go#L815: var tbs cryptobyte.String
parser.go#L850: var sigAISeq cryptobyte.String
parser.go#L857: var outerSigAISeq cryptobyte.String
parser.go#L870: var issuerSeq cryptobyte.String
parser.go#L881: var validity cryptobyte.String
parser.go#L890: var subjectSeq cryptobyte.String
parser.go#L901: var spki cryptobyte.String
parser.go#L909: var pkAISeq cryptobyte.String
parser.go#L940: var extensions cryptobyte.String
parser.go#L951: var extension cryptobyte.String
parser.go#L1019: input := cryptobyte.String(der)
parser.go#L1031: var tbs cryptobyte.String
parser.go#L1053: var sigAISeq cryptobyte.String
parser.go#L1060: var outerSigAISeq cryptobyte.String
parser.go#L1079: var issuerSeq cryptobyte.String
parser.go#L1102: var revokedSeq cryptobyte.String
parser.go#L1109: var certSeq cryptobyte.String
parser.go#L1126: var extensions cryptobyte.String
parser.go#L1133: var extension cryptobyte.String
parser.go#L1142: val := cryptobyte.String(ext.Value)
parser.go#L1161: var extensions cryptobyte.String
parser.go#L1171: var extension cryptobyte.String
parser.go#L1182: value := cryptobyte.String(ext.Value)
|
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. |