Sha256: e3130fbe05f5e843d8d1bedff4a5cff731761fbfb4be2fc7aa13523b7674a0af

Contents?: true

Size: 417 Bytes

Versions: 2

Compression:

Stored size: 417 Bytes

Contents


module Ccrypto
  module KeyBundle
    attr_accessor :nativeKeypair

    def KeyBundle.from_storage(*args, &block)
      Provider.instance.provider.keybundle_from_storage(*args, &block)
    end

  end

  module ECCKeyBundle
    include KeyBundle
  end

  module RSAKeyBundle
    include KeyBundle
  end

  module ED25519KeyBundle
    include KeyBundle
  end

  module X25519KeyBundle
    include KeyBundle
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ccrypto-0.1.3 lib/ccrypto/key_bundle.rb
ccrypto-0.1.2 lib/ccrypto/key_bundle.rb