Leser: 13
6 Einträge, 1 Seite |
1
2
INSERT into user (username, email, password)
VALUES ("some user", "some@mail.net", MD5("somepassword"))
pq+2009-01-16 19:41:43--alternativ-vorschlag: erstelle die md5sum schon in perl, das macht dich auch flexibler,
falls du mal umstellen willst auf eine andere prüfsummenart.
1
2
3
4
5
6
7
8
9
10
11
__PACKAGE__->add_columns(
qw/all other fields/,
password => {
data_type => 'CHAR',
size => 32,
encode_column => 1,
encode_class => 'Digest',
encode_args => {algorithm => 'MD5', format => 'hex'},
encode_check_method => 'check_password',
},
);
6 Einträge, 1 Seite |