logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Pass::OTP - Perl implementation of HOTP / TOTP algorithms

Description

       The "Pass::OTP" module provides implementation of HOTP and TOTP algorithms according to the RFC 4226 and
       RFC 6238.

Functions

       hotp(%options)
           Computes HMAC-based One-time Password (RFC 4226).

               HOTP(K,C) = Truncate(HMAC-SHA-1(K,C))

           Step 1: Generate an HMAC-SHA-1 value

               Let HS = HMAC-SHA-1(K,C)

           Step 2: Generate a 4-byte string (Dynamic Truncation)

               Let Sbits = DT(HS)

           Step 3: Compute an HOTP value

               Let Snum = StToNum(Sbits)       # Convert S to a number in 0..2^{31}-1
               Return D = Snum mod 10^Digit    # D us a number in the range 0..10^{Digit}-1

       totp(%options)
           Computes Time-based One-time Password (RFC 6238).

               TOTP = HOTP(K,T)
               T = (Current Unix time - T0) / X

       otp(%options)
           Convenience wrapper which calls totp/hotp according to options.

Name

       Pass::OTP - Perl implementation of HOTP / TOTP algorithms

See Also

       Digest::HMAC

       oathtool(1)

       RFC 4226 RFC 6238

       <https://github.com/google/google-authenticator/wiki/Key-Uri-Format>

Synopsis

           use Pass::OTP qw(otp);
           use Pass::OTP::URI qw(parse);

           my $uri = "otpauth://totp/ACME:john.doe@email.com?secret=HXDMVJECJJWSRB3HWIZR4IFUGFTMXBOZ&issuer=ACME&digits=6";
           my $otp_code = otp(parse($uri));

See Also