Class: Xml::Kit::Crypto::OaepCipher

Inherits:
Object
  • Object
show all
Defined in:
lib/xml/kit/crypto/oaep_cipher.rb

Constant Summary collapse

ALGORITHM =
"#{::Xml::Kit::Namespaces::XMLENC}rsa-oaep-mgf1p".freeze
ALGORITHMS =
{
  ALGORITHM => true
}.freeze

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(_algorithm, key) ⇒ OaepCipher

Returns a new instance of OaepCipher.



11
12
13
# File 'lib/xml/kit/crypto/oaep_cipher.rb', line 11

def initialize(_algorithm, key)
  @key = key
end

Class Method Details

.matches?(algorithm) ⇒ Boolean

Returns:

  • (Boolean)


15
16
17
# File 'lib/xml/kit/crypto/oaep_cipher.rb', line 15

def self.matches?(algorithm)
  ALGORITHMS[algorithm]
end

Instance Method Details

#decrypt(cipher_text) ⇒ Object



23
24
25
# File 'lib/xml/kit/crypto/oaep_cipher.rb', line 23

def decrypt(cipher_text)
  @key.private_decrypt(cipher_text, padding)
end

#encrypt(plain_text) ⇒ Object



19
20
21
# File 'lib/xml/kit/crypto/oaep_cipher.rb', line 19

def encrypt(plain_text)
  @key.public_encrypt(plain_text, padding)
end