From 8f32887a1ac2e844072a4ff41b17f8f5de04b6b2 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 7 Sep 2022 12:28:45 +0200 Subject: global-functions: introduce $GetRandom20CharAlNum --- global-functions | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/global-functions b/global-functions index f02da9e..5bbe7c4 100644 --- a/global-functions +++ b/global-functions @@ -28,6 +28,7 @@ :global EscapeForRegEx; :global FlushEmailQueue; :global GetMacVendor; +:global GetRandom20CharAlNum; :global GetRandom20CharHex; :global GetRandomNumber; :global HexToNum; @@ -400,6 +401,13 @@ } } +# generate random 20 chars alphabetical (A-Z & a-z) and numerical (0-9) +:set GetRandom20CharAlNum do={ + :global EitherOr; + + :return [ :rndstr length=[ $EitherOr [ :tonum $1 ] 20 ] from="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" ]; +} + # generate random 20 chars hex (0-9 and a-f) :set GetRandom20CharHex do={ :global EitherOr; -- cgit v1.2.3-54-g00ecf