bcrypto / bee2j

Apache License 2.0
4 stars 1 forks source link

Try to use ECKey as interface for bign keys #10

Closed pavlovkv closed 4 months ago

pavlovkv commented 1 year ago

Use ECKey (https://docs.oracle.com/javase/8/docs/api/java/security/interfaces/ECKey.html) in bign keys hierarchy

blackbearman commented 6 months ago

Interface ECKey add only one method: ECParameterSpec getParams(). Classes to be supported:

  1. ECParameterSpec
  2. EllipticCurve
  3. ECPoint
  4. BigInteger
  5. ECField
blackbearman commented 6 months ago

public BignParams getParams() is supported in BignKey. It seems to be more usable than ECParameterSpec.