create-hmac

WebJar for create-hmac

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

create-hmac
Last Version

Last Version

1.1.7
Release Date

Release Date

Type

Type

jar
Description

Description

create-hmac
WebJar for create-hmac
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/crypto-browserify/createHmac

Download create-hmac

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/create-hmac/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>create-hmac</artifactId>
    <version>1.1.7</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/create-hmac/
implementation 'org.webjars.npm:create-hmac:1.1.7'
// https://jarcasting.com/artifacts/org.webjars.npm/create-hmac/
implementation ("org.webjars.npm:create-hmac:1.1.7")
'org.webjars.npm:create-hmac:jar:1.1.7'
<dependency org="org.webjars.npm" name="create-hmac" rev="1.1.7">
  <artifact name="create-hmac" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='create-hmac', version='1.1.7')
)
libraryDependencies += "org.webjars.npm" % "create-hmac" % "1.1.7"
[org.webjars.npm/create-hmac "1.1.7"]

Dependencies

compile (6)

Group / Artifact Type Version
org.webjars.npm : sha.js jar [2.4.8,3)
org.webjars.npm : create-hash jar [1.1.0,2)
org.webjars.npm : inherits jar [2.0.1,3)
org.webjars.npm : ripemd160 jar [2.0.0,3)
org.webjars.npm : safe-buffer jar [5.0.1,6)
org.webjars.npm : cipher-base jar [1.0.3,2)

Project Modules

There are no modules declared in this project.

create-hmac

NPM Package Build Status Dependency status

js-standard-style

Node style HMACs for use in the browser, with native HMAC functions in node. API is the same as HMACs in node:

var createHmac = require('create-hmac')
var hmac = createHmac('sha224', Buffer.from('secret key'))
hmac.update('synchronous write') //optional encoding parameter
hmac.digest() // synchronously get result with optional encoding parameter

hmac.write('write to it as a stream')
hmac.end() //remember it's a stream
hmac.read() //only if you ended it as a stream though
org.webjars.npm

Versions

Version
1.1.7
1.1.6
1.1.4
1.1.0