Sha256: 1b0079abb79f194866cc00d9bd997be416612d24c4c65cfd39b03cb115bc141f
Contents?: true
Size: 431 Bytes
Versions: 11
Compression:
Stored size: 431 Bytes
Contents
module Noise module Functions module DH class ED448 DHLEN = 56 def generate_keypair throw NotImplementedError end def dh(key_pair, public_key) throw NotImplementedError end def dhlen DHLEN end def self.from_private(private_key) end def self.from_public(private_key) end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems