vendor/golang.org/x/crypto/cryptobyte.String.ReadASN1Integer (method)

18 uses

	vendor/golang.org/x/crypto/cryptobyte (current package)
		asn1.go#L273: func (s *String) ReadASN1Integer(out interface{}) bool {
		asn1.go#L705: 	if !i.ReadASN1Integer(out) || !i.Empty() {

	crypto/ecdsa
		ecdsa.go#L544: 		!inner.ReadASN1Integer(&r) ||
		ecdsa.go#L545: 		!inner.ReadASN1Integer(&s) ||
		ecdsa_legacy.go#L75: 		!inner.ReadASN1Integer(r) ||
		ecdsa_legacy.go#L76: 		!inner.ReadASN1Integer(s) ||

	crypto/x509
		parser.go#L266: 		if !der.ReadASN1Integer(p.N) {
		parser.go#L269: 		if !der.ReadASN1Integer(&p.E) {
		parser.go#L324: 		if !der.ReadASN1Integer(y) {
		parser.go#L337: 			!paramsDer.ReadASN1Integer(pub.Parameters.P) ||
		parser.go#L338: 			!paramsDer.ReadASN1Integer(pub.Parameters.Q) ||
		parser.go#L339: 			!paramsDer.ReadASN1Integer(pub.Parameters.G) {
		parser.go#L381: 		if !der.ReadASN1Integer(&mpl) || mpl > math.MaxInt {
		parser.go#L839: 				if !val.ReadASN1Integer(&out.InhibitAnyPolicy) {
		parser.go#L934: 	if !tbs.ReadASN1Integer(serial) {
		parser.go#L1146: 	if !tbs.ReadASN1Integer(&version) {
		parser.go#L1219: 			if !certSeq.ReadASN1Integer(rce.SerialNumber) {
		parser.go#L1287: 				if !value.ReadASN1Integer(rl.Number) {