add more documentation

This commit is contained in:
2021-04-22 08:45:21 +02:00
parent a34f6874fd
commit cfada63fb3
4 changed files with 9 additions and 6 deletions

View File

@ -213,13 +213,16 @@ FHEM::Core::Authentication::Passwords->new();
=head1 DESCRIPTION
Store new Password
$hash->{helper}->{passwdobj}->setStorePassword('PASSWORD');
$hash->{helper}->{passwdobj}->setStorePassword($name,'PASSWORD');
Read Password
$hash->{helper}->{passwdobj}->getReadPassword();
$hash->{helper}->{passwdobj}->getReadPassword($name);
Delete Password
$hash->{helper}->{passwdobj}->setDeletePassword($name);
Rename Password
$hash->{helper}->{passwdobj}->getRename($newname,$oldname);
=head1 EXPORT