NAME
Passwd::Keyring::Memory - fallback keyring for environments where no better keyring is available.
VERSION
Version 0.22
SYNOPSIS
use Passwd::Keyring::Memory;
my $keyring = Passwd::Keyring::Memory->new();
$keyring->set_password("John", "verysecret", "my-pseudodomain");
my $password = $keyring->get_password("John", "my-pseudodomain");
$keyring->clear_password("John", "my-pseudodomain");
SUBROUTINES/METHODS
new
Initializes the processing.
set_password(username, password, domain)
Sets (stores) password identified by given domain for given user
get_password($user_name, $domain)
Reads previously stored password for given user in given app. If such password can not be found, returns undef.
clear_password($user_name, $domain)
Removes given password (if present)
is_persistent
Returns info, whether this keyring actually saves passwords persistently.
(false in this case)
AUTHOR
Marcin Kasperski, <Marcin.Kasperski at mekk.waw.pl>
BUGS
Please report any bugs or feature requests to issue tracker at https://bitbucket.org/Mekk/perl-keyring-memory.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Passwd::Keyring::Memory
You can also look for information at:
L<https://bitbucket.org/Mekk/perl-keyring-memory>
LICENSE AND COPYRIGHT
Copyright 2012 Marcin Kasperski.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.