2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

lib/FHEM/Core/Password/Utils.pm: move to lib/FHEM/Core/Authentication/Passwords.pm

git-svn-id: https://svn.fhem.de/fhem/trunk@24297 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2021-04-21 08:41:32 +00:00
parent bffbc0c521
commit c806bcea6b
2 changed files with 10 additions and 8 deletions

View File

@ -1,5 +1,7 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- change: move lib/FHEM/Core/Password/Utils.pm to
lib/FHEM/Core/Authentication/Passwords.pm
- feature: 30_HUEBridge: enable autocreation of sensors for deconz
- new: lib/FHEM/Core/Password/Utils.pm: new modul for developer to save
passwords or passphrase in fhem keystore

View File

@ -25,7 +25,7 @@
#
###############################################################################
package FHEM::Core::Password::Utils;
package FHEM::Core::Authentication::Passwords;
use 5.008;
@ -192,23 +192,23 @@ __END__
=head1 NAME
FHEM::Core::Password::Utils - FHEM extension for password handling
FHEM::Core::Authentication::Passwords - FHEM extension for password handling
=head1 VERSION
This document describes FHEM::Core::Password::Utils version 0.3
This document describes FHEM::Core::Authentication::Passwords version 0.9
=head1 CONSTRUCTOR
FHEM::Core::Password::Utils->new();
FHEM::Core::Authentication::Passwords->new();
=head1 SYNOPSIS
use FHEM::Core::Password::Utils qw(:ALL);
our $passwd = FHEM::Core::Password::Utils->new();
use FHEM::Core::Authentication::Passwords qw(:ALL);
our $passwd = FHEM::Core::Authentication::Passwords->new();
you can also save the password object in the instance hash
our $hash->{helper}->{passwdobj} = FHEM::Core::Password::Utils->new();
our $hash->{helper}->{passwdobj} = FHEM::Core::Authentication::Passwords->new();
=head1 DESCRIPTION
@ -242,6 +242,6 @@ Marko Oldenburg E<lt>fhemdevelopment AT cooltux DOT netE<gt>
=head1 LICENSE
FHEM::Core::Password::Utils is released under the same license as FHEM.
FHEM::Core::Authentication::Passwords is released under the same license as FHEM.
=cut