Password Manager Daemon 1.16 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Password Manager Daemon 1.16 (Default branch)
# 1  
Old 01-11-2009
Password Manager Daemon 1.16 (Default branch)

Password Manager Daemon serves clients data via a local socket. The data is stored in an encrypted XML file, and the client must provide the key to modify it. There is also a library available to make patching applications to use the daemon easier. License: GNU General Public License (GPL) Changes:
GETCONFIG now accepts UTF8 filenames. "disable_list_and_dump" affects the XPATH command too. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Authen::Simple::Password(3pm)				User Contributed Perl Documentation			     Authen::Simple::Password(3pm)

NAME
Authen::Simple::Password - Simple password checking SYNOPSIS
if ( Authen::Simple::Password->check( $password, $encrypted ) ) { # OK } DESCRIPTION
Provides a simple way to verify passwords. METHODS
o check( $password, $encrypted ) Returns true on success and false on failure. SUPPORTED PASSWORD FORMATS
o Plain Plaintext o Crypt crypt(3) o Crypt Modular o $1$ MD5-based password algorithm o $apr$ MD5-based password algorithm, Apache variant o LDAP o {CLEARTEXT} Plaintext. o {CRYPT} Uses crypt(3) o {MD5} MD5 algorithm o {SMD5} Seeded MD5 algorithm o {SHA} SHA-1 algorithm o {SSHA} Seeded SHA-1 algorithm o MD5 algorithm Encoded as binary, Base64 or hexadecimal. o SHA-1 algorithm Encoded as binary, Base64 or hexadecimal. o SHA-2 256 algorithm Encoded as binary, Base64 or hexadecimal. SEE ALSO
Authen::Simple crypt(3). AUTHOR
Christian Hansen "chansen@cpan.org" COPYRIGHT
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-04-19 Authen::Simple::Password(3pm)