This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dir | rename-item -NewName {$_.name -replace " ","-"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Article about TOTP on my blog https://stapp.space/generate-totp-in-postman/ | |
/** | |
* @preserve A JavaScript implementation of the SHA family of hashes, as | |
* defined in FIPS PUB 180-4 and FIPS PUB 202, as well as the corresponding | |
* HMAC implementation as defined in FIPS PUB 198a | |
* | |
* Copyright Brian Turek 2008-2017 | |
* Distributed under the BSD License | |
* See http://caligatio.github.com/jsSHA/ for more information |