
VCS::LibCVS::Client::Connection::CvsPass - A ~/.cvspass file.

my $cvspass = VCS::LibCVS::Client::Connection::CvsPass->new(); my $password = $cvspass->get_password($root);

A ~/.cvspass file. This file contains the trivially encoded passwords used by the CVS pserver authentication system. This interface provides access to the passwords.

$cvspass = VCS::LibCVS::Client::Connection::CvsPass->new();
Return a new CvsPass object, for the current user, found in their home directory.

$password = $cvspass$->get_password($root)
Retrieve the password for the indicated repository.
$cvspass$->store_password($root, $password)
The scrambled password.
Store a password for the repository. The password must be scrambled using the pserver scrambling technique. See VCS::LibCVS::Client::Connection::Pserver::pserver_scramble() for details.

VCS::LibCVS::Client::Connection::Pserver