Class: Chef::EncryptedDataBagItem::Encryptor::Version1Encryptor

Inherits:
Object
  • Object
show all
Defined in:
lib/chef/encrypted_data_bag_item.rb

Direct Known Subclasses

Version2Encryptor

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(plaintext_data, key, iv = nil) ⇒ Version1Encryptor

Create a new Encryptor for data, which will be encrypted with the given key.

Arguments:

  • data: An object of any type that can be serialized to json

  • key: A String representing the desired passphrase

  • iv: The optional iv parameter is intended for testing use only. When

not supplied, Encryptor will use OpenSSL to generate a secure random IV, which is what you want.



99
100
101
102
103
# File 'lib/chef/encrypted_data_bag_item.rb', line 99

def initialize(plaintext_data, key, iv=nil)
  @plaintext_data = plaintext_data
  @key = key
  @iv = iv && Base64.decode64(iv)
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



87
88
89
# File 'lib/chef/encrypted_data_bag_item.rb', line 87

def key
  @key
end

#plaintext_dataObject (readonly)

Returns the value of attribute plaintext_data.



88
89
90
# File 'lib/chef/encrypted_data_bag_item.rb', line 88

def plaintext_data
  @plaintext_data
end

Instance Method Details

#encrypted_dataObject

Encrypts and Base64 encodes serialized_data



138
139
140
141
142
143
144
# File 'lib/chef/encrypted_data_bag_item.rb', line 138

def encrypted_data
  @encrypted_data ||= begin
    enc_data = openssl_encryptor.update(serialized_data)
    enc_data << openssl_encryptor.final
    Base64.encode64(enc_data)
  end
end

#for_encrypted_itemObject

Returns a wrapped and encrypted version of plaintext_data suitable for using as the value in an encrypted data bag item.



107
108
109
110
111
112
113
114
# File 'lib/chef/encrypted_data_bag_item.rb', line 107

def for_encrypted_item
  {
    "encrypted_data" => encrypted_data,
    "iv" => Base64.encode64(iv),
    "version" => 1,
    "cipher" => ALGORITHM
  }
end

#ivObject

Generates or returns the IV.



117
118
119
120
121
122
# File 'lib/chef/encrypted_data_bag_item.rb', line 117

def iv
  # Generated IV comes from OpenSSL::Cipher::Cipher#random_iv
  # This gets generated when +openssl_encryptor+ gets created.
  openssl_encryptor if @iv.nil?
  @iv
end

#openssl_encryptorObject

Generates (and memoizes) an OpenSSL::Cipher::Cipher object and configures it for the specified iv and encryption key.



126
127
128
129
130
131
132
133
134
135
# File 'lib/chef/encrypted_data_bag_item.rb', line 126

def openssl_encryptor
  @openssl_encryptor ||= begin
    encryptor = OpenSSL::Cipher::Cipher.new(ALGORITHM)
    encryptor.encrypt
    @iv ||= encryptor.random_iv
    encryptor.iv = @iv
    encryptor.key = Digest::SHA256.digest(key)
    encryptor
  end
end

#serialized_dataObject

Wraps the data in a single key Hash (JSON Object) and converts to JSON. The wrapper is required because we accept values (such as Integers or Strings) that do not produce valid JSON when serialized without the wrapper.



150
151
152
# File 'lib/chef/encrypted_data_bag_item.rb', line 150

def serialized_data
  Yajl::Encoder.encode(:json_wrapper => plaintext_data)
end