Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Node.js One-Time Password library
yarn add node-otp
or
npm install --save node-otp
const { hotp } = require('node-otp')
hotp({
secret: '12345678901234567890',
})
const { totp } = require('node-otp')
totp({
secret: '12345678901234567890',
})
hotp: (parameters: Parameters) => string
Parameters
secret: string | Buffer
movingFactor?: number
Default value of movingFactor
is 0
codeDigits?: number
Default value of codeDigits
is 6
addChecksum?: boolean
Default value of addChecksum
is false
truncationOffset?: number
Default value of truncationOffset
is -1
hmacAlgorithm?: 'sha1' | 'sha256' | 'sha512'
Default value of hmacAlgorithm
is sha1
totp: (parameters: Parameters) => string
Parameters
secret: string | Buffer
step?: number
Default value of step
is 30
time?: number
Default value of time
is 6
initialTime?: number
Default value of initialTime
is 0
codeDigits?: number
Default value of codeDigits
is 6
hmacAlgorithm?: 'sha1' | 'sha256' | 'sha512'
Default value of hmacAlgorithm
is sha256
FAQs
Node.js One-Time Password
The npm package node-otp receives a total of 173 weekly downloads. As such, node-otp popularity was classified as not popular.
We found that node-otp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.