Sha256: 09b7118b9aa0afb1f4767913e6280fe3964a02781e5fe68de3a4d9937410f09a
Contents?: true
Size: 223 Bytes
Versions: 1
Compression:
Stored size: 223 Bytes
Contents
module Xmlenc module Algorithms class Rsa15 def initialize(key) @key = key end def decrypt(cipher_value, options = {}) @key.private_decrypt(cipher_value) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xmlenc-0.0.1 | lib/xmlenc/algorithms/rsa_15.rb |