You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a decent number of existing names that can be cleaned up too--a few examples:
type BigInt
func GenerateKeyECDSA(curve string) (X, Y, D BigInt, err error)
func GenerateKeyRSA(bits int) (N, E, D, P, Q, Dp, Dq, Qinv BigInt, err error)
type PrivateKeyECDSA
func NewPrivateKeyECDSA(curve string, X, Y, D BigInt) (*PrivateKeyECDSA, error)
type PrivateKeyRSA
func NewPrivateKeyRSA(N, E, D, P, Q, Dp, Dq, Qinv BigInt) (*PrivateKeyRSA, error)
I've chalked this up to "spelling it how cryptographers do" in the past, so I'm indifferent, but we should probably decide.
The text was updated successfully, but these errors were encountered:
Originally posted by @derekparker in #135 (comment)
There are a decent number of existing names that can be cleaned up too--a few examples:
I've chalked this up to "spelling it how cryptographers do" in the past, so I'm indifferent, but we should probably decide.
The text was updated successfully, but these errors were encountered: