remove base64 encoding

This commit is contained in:
Jason Davis-Cooke
2015-02-26 09:35:09 -05:00
parent 431c86bb0e
commit 8778c7b27d
2 changed files with 2 additions and 2 deletions

View File

@@ -139,7 +139,7 @@ module Zanzibar
## Write the password to a file. Intended for use with a Zanzifile
def save_password_to_file(password, path, name)
File.open(File.join(path, name), 'wb') do |file|
file.print Base64.strict_encode64(password)
file.print password
end
end