type crypto/internal/boring.BigInt
10 uses
crypto/internal/boring (current package)
doc.go#L19: type BigInt []uint
notboring.go#L58: func GenerateKeyECDSA(curve string) (X, Y, D BigInt, err error) {
notboring.go#L61: func NewPrivateKeyECDSA(curve string, X, Y, D BigInt) (*PrivateKeyECDSA, error) {
notboring.go#L64: func NewPublicKeyECDSA(curve string, X, Y BigInt) (*PublicKeyECDSA, error) {
notboring.go#L95: func GenerateKeyRSA(bits int) (N, E, D, P, Q, Dp, Dq, Qinv BigInt, err error) {
notboring.go#L98: func NewPrivateKeyRSA(N, E, D, P, Q, Dp, Dq, Qinv BigInt) (*PrivateKeyRSA, error) {
notboring.go#L101: func NewPublicKeyRSA(N, E BigInt) (*PublicKeyRSA, error) { panic("boringcrypto: not available") }
crypto/internal/boring/bbig
big.go#L13: func Enc(b *big.Int) boring.BigInt {
big.go#L19: return boring.BigInt{}
big.go#L24: func Dec(b boring.BigInt) *big.Int {