search for: my_encrypt_function

Displaying 1 result from an estimated 1 matches for "my_encrypt_function".

2006 Mar 13
0
Encrypting data before saving
...essor called ''password'' and saves the SHA1 output in the backend as ''hashed_password''. I''ve done a similar thing, but instead of using an accessor I simply use ''password'' for both and assign using: def before_save self.password = my_encrypt_function(self.password) end def after_save self.password = '''' end (I clear it as the actual hash is never needed by my app and I don''t want it in the session) Is it "wrong" to use only the one property of the model like this, without using an intermediary accessor...