otplib 12.0.0 → 12.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/core.js +1 -1
- package/index.js +1 -1
- package/package.json +4 -4
- package/v11.js +1 -1
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
It implements both [HOTP][rfc-4226-wiki] - [RFC 4226][rfc-4226]
|
|
51
51
|
and [TOTP][rfc-6238-wiki] - [RFC 6238][rfc-6238],
|
|
52
52
|
and are tested against the test vectors provided in their respective RFC specifications.
|
|
53
|
-
These datasets can be found in the `
|
|
53
|
+
These datasets can be found in the `tests/data` folder.
|
|
54
54
|
|
|
55
55
|
- [RFC 4226 Dataset][rfc-4226-dataset]
|
|
56
56
|
- [RFC 6238 Dataset][rfc-6238-dataset]
|
|
@@ -471,12 +471,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
471
471
|
<td align="center"><a href="https://developer.mozilla.org/profiles/madarche/"><img src="https://avatars0.githubusercontent.com/u/152407?v=4" width="80px;" alt="Marc-Aurèle DARCHE"/><br /><sub><b>Marc-Aurèle DARCHE</b></sub></a><br /><a href="https://github.com/yeojz/otplib/commits?author=madarche" title="Documentation">📖</a></td>
|
|
472
472
|
<td align="center"><a href="http://shakram02.github.io/"><img src="https://avatars3.githubusercontent.com/u/10996982?v=4" width="80px;" alt="Ahmed Hamdy (@shakram02)"/><br /><sub><b>Ahmed Hamdy (@shakram02)</b></sub></a><br /><a href="https://github.com/yeojz/otplib/commits?author=shakram02" title="Documentation">📖</a></td>
|
|
473
473
|
<td align="center"><a href="https://tony.brix.ninja"><img src="https://avatars3.githubusercontent.com/u/97994?v=4" width="80px;" alt="Tony Brix"/><br /><sub><b>Tony Brix</b></sub></a><br /><a href="https://github.com/yeojz/otplib/commits?author=UziTech" title="Code">💻</a> <a href="https://github.com/yeojz/otplib/commits?author=UziTech" title="Documentation">📖</a></td>
|
|
474
|
+
<td align="center"><a href="https://github.com/encX"><img src="https://avatars3.githubusercontent.com/u/5965883?v=4" width="80px;" alt="Plai"/><br /><sub><b>Plai</b></sub></a><br /><a href="https://github.com/yeojz/otplib/commits?author=encX" title="Documentation">📖</a></td>
|
|
474
475
|
</tr>
|
|
475
476
|
</table>
|
|
476
477
|
|
|
477
478
|
<!-- markdownlint-enable -->
|
|
478
479
|
<!-- prettier-ignore-end -->
|
|
479
|
-
|
|
480
480
|
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
481
481
|
|
|
482
482
|
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors)
|
package/core.js
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "otplib",
|
|
3
3
|
"description": "HMAC-based (HOTP) and Time-based (TOTP) One-Time Password library",
|
|
4
|
-
"version": "12.0.
|
|
4
|
+
"version": "12.0.1",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@otplib/core": "^12.0.
|
|
12
|
-
"@otplib/preset-default": "^12.0.
|
|
13
|
-
"@otplib/preset-v11": "^12.0.
|
|
11
|
+
"@otplib/core": "^12.0.1",
|
|
12
|
+
"@otplib/preset-default": "^12.0.1",
|
|
13
|
+
"@otplib/preset-v11": "^12.0.1"
|
|
14
14
|
},
|
|
15
15
|
"otplib": {},
|
|
16
16
|
"keywords": [
|