Class: Nexus::Cipher

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

Instance Method Summary collapse

Constructor Details

#initialize(pass, token = nil) ⇒ Cipher

Returns a new instance of Cipher.



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/nexus/cipher.rb', line 12

def initialize( pass, token = nil )
  @token = Base64.strict_decode64( token ) if token
  @token ||= OpenSSL::Random.random_bytes( 32 )

  iter = 20000
  key_len = 32
  @key = OpenSSL::PKCS5.pbkdf2_hmac_sha1( pass,
                                          @token,
                                          iter,
                                          key_len )
end

Instance Method Details

#decrypt(data) ⇒ Object



49
50
51
52
53
54
55
# File 'lib/nexus/cipher.rb', line 49

def decrypt( data )
  c = cipher
  c.decrypt
  c.key = @key
  c.iv = @iv
  c.update( Base64.strict_decode64( data ) ) + c.final
end

#encrypt(data) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/nexus/cipher.rb', line 41

def encrypt( data )
  c = cipher
  c.encrypt
  c.key = @key
  @iv = c.random_iv
  Base64.strict_encode64( c.update( data ) + c.final )
end

#ivObject



33
34
35
# File 'lib/nexus/cipher.rb', line 33

def iv
  Base64.strict_encode64( @iv ) if @iv
end

#iv=(iv) ⇒ Object



37
38
39
# File 'lib/nexus/cipher.rb', line 37

def iv=( iv )
  @iv = Base64.strict_decode64( iv )
end

#tokenObject



29
30
31
# File 'lib/nexus/cipher.rb', line 29

def token
  Base64.strict_encode64( @token ) 
end