Skip to content

Commit

Permalink
Update RFC links
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorm committed Oct 24, 2024
1 parent 6d7e297 commit 40d17a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hotp.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { timingSafeEqual } from "./internal/crypto/timing-safe-equal.js";

/**
* HOTP: An HMAC-based One-time Password Algorithm.
* @see [RFC 4226](https://tools.ietf.org/html/rfc4226)
* @see [RFC 4226](https://datatracker.ietf.org/doc/html/rfc4226)
*/
class HOTP {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/totp.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Secret } from "./secret.js";

/**
* TOTP: Time-Based One-Time Password Algorithm.
* @see [RFC 6238](https://tools.ietf.org/html/rfc6238)
* @see [RFC 6238](https://datatracker.ietf.org/doc/html/rfc6238)
*/
class TOTP {
/**
Expand Down

0 comments on commit 40d17a0

Please sign in to comment.