]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Use base32 perl library available on both Debian and RHEL
authorNick Porter <nick@portercomputing.co.uk>
Tue, 19 Dec 2023 09:26:00 +0000 (09:26 +0000)
committerNick Porter <nick@portercomputing.co.uk>
Tue, 19 Dec 2023 09:26:00 +0000 (09:26 +0000)
src/main/radsecret

index b53620b9f3908dcf18d151206a19bb9cbfc7c89c..2a03a2e7bce3979aaca1908314be7be7511044b4 100755 (executable)
@@ -2,6 +2,6 @@
 #
 #  A tool which generates strong shared secrets.
 #
-use MIME::Base32;
+use Convert::Base32;
 use Crypt::URandom();
 print join('-', unpack("(A4)*", lc encode_base32(Crypt::URandom::urandom(12)))), "\n";