removed orig file and also began encryption related stuff for ssn(s)

This commit is contained in:
cktricky
2013-11-13 14:01:29 -05:00
parent 9cbdbf01e5
commit 665ccb2167
2 changed files with 6 additions and 35 deletions
+6 -2
View File
@@ -8,10 +8,14 @@ class WorkInfo < ActiveRecord::Base
"***-**-" << self.SSN[-4,4]
end
def encrypt_ssn
def encrypt_ssn(data)
end
def decrypt_ssn
def decrypt_ssn(encrypted_data)
end
def cipher_mode
'aes-256-cbc'
end
end