lib/ccrypto/private_key.rb in ccrypto-0.1.3 vs lib/ccrypto/private_key.rb in ccrypto-0.2.0
- old
+ new
@@ -21,12 +21,20 @@
else
@native_privKey.respond_to?(mtd)
end
end
+ def native
+ @native_privKey
+ end
+
end # PrivateKey
class ECCPrivateKey < PrivateKey; end
class RSAPrivateKey < PrivateKey; end
class ED25519PrivateKey < PrivateKey; end
class X25519PrivateKey < PrivateKey; end
+
+ class CrystalDilithiumPrivateKey < PrivateKey; end
+ class CrystalKyberPrivateKey < PrivateKey; end
+
end