node-hmac-drbg 1.0.1-3 source package in Ubuntu

Changelog

node-hmac-drbg (1.0.1-3) unstable; urgency=medium

  * Move to /usr/share
  * Bump debhelper and policy (no changes)

 -- Bastien Roucariès <email address hidden>  Mon, 16 Sep 2019 12:04:19 +0200

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Eoan: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-hmac-drbg_1.0.1-3.dsc 2.2 KiB 214aa4460d7334492b21db01fbbe8149a23276e14ad3491bb8e62dc2287dc175
node-hmac-drbg_1.0.1.orig.tar.gz 11.2 KiB 31e78df82d902311850ec092af74b51aab9b82e33ff7ee6b43f1f13d53d979e3
node-hmac-drbg_1.0.1-3.debian.tar.xz 3.7 KiB 42121290d28ebe2eb48f43eba23f9fb2cd73757f8c0f9f6dc974d4c1ac546166

Available diffs

No changes file available.

Binary packages built by this source

node-hmac-drbg: Deterministic random bit generator (hmac) in pure javascript

 This is a pure javascript implementation of deterministic random bit
 generators defined in section 10.1.2 of NIST SP 800-90A.
 .
 A DRBG mechanism uses an algorithm that produces a sequence of bits
 from an initial value that is determined by a seed that is determined
 from the entropy input. Once the seed is provided and the initial
 value is determined, the DRBG is said to be instantiated and may be
 used to produce output.
 .
 Because of the deterministic nature of the process, a DRBG is
 said to producepseudorandom bits, rather than random bits. The seed
 used to instantiate the DRBG must contain sufficient entropy to
 provide an assurance of randomness. If the seed is kept secret,and the
 algorithm is well designed, the bits output by the DRBG will be
 unpredictable, up to the instantiated security strength of the DRBG.
 .
 Node.js is an event-based server-side JavaScript engine.