mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
feb98118de
git-svn-id: https://svn.fhem.de/fhem/trunk@8261 2b470e98-0d58-463d-a4d8-8e2adae1ed80
8 lines
120 B
Perl
Executable File
8 lines
120 B
Perl
Executable File
#!/usr/bin/perl
|
|
use strict;
|
|
|
|
my $user = $ARGV[0];
|
|
my $pass = $ARGV[1];
|
|
print "$user:".crypt($pass,"Fhem")."\n";
|
|
exit 0;
|