Class: S7n::PlainCipher

Inherits:
Cipher
  • Object
show all
Defined in:
lib/s7n/cipher.rb

Overview

Cipher クラスと同じインタフェースを持つが、暗号化しないクラスを表現 する。

Instance Attribute Summary

Attributes inherited from Cipher

#options

Instance Method Summary collapse

Methods inherited from Cipher

create_instance, #initialize

Constructor Details

This class inherits a constructor from S7n::Cipher

Instance Method Details

#decrypt(io) ⇒ Object



106
107
108
# File 'lib/s7n/cipher.rb', line 106

def decrypt(io)
  return io.read
end

#encrypt(io) ⇒ Object



102
103
104
# File 'lib/s7n/cipher.rb', line 102

def encrypt(io)
  return io.read
end