Method: Owrb::Data::Cipher#encrypt

Defined in:
lib/owrb.rb

#encrypt(data) ⇒ Object



231
232
233
234
235
236
# File 'lib/owrb.rb', line 231

def encrypt( data )
  @cipher.encrypt
  @cipher.key = @key
  @cipher.iv = @iv
  "#{@cipher.update( data )}#{@cipher.final}"
end