On Thu, Mar 27, 2014 at 08:58:48PM -0300, Hern??n Morales Durand wrote:
Second, my first entry contains a post about Application Security, a new package to make Pharo applications more secure. You can start playing with the objects right now, while more documentation is being written for the next release.
Hi, Good stuff! I've been doing some password-related work as well. http://samadhiweb.com/blog/2013.08.11.splitpasswordstore.html This allows writing the following: spec := DBConnectionSpec new key: 'mysql'; host: 'localhost'; port: 3306; user: 'myappuser'; ====> password: (SpsSplitPasswordStore readFrom: 'myappuser.dat'); yourself. Also, SHA256/512 password hashing: http://samadhiweb.com/blog/2013.11.17.shacrypt.html Code for both is published on SS3. -- Pierce Ng http://samadhiweb.com/blog/