create-hmac

WebJar for create-hmac

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

create-hmac
Последняя версия

Последняя версия

1.1.7
Дата

Дата

Тип

Тип

jar
Описание

Описание

create-hmac
WebJar for create-hmac
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

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

Скачать create-hmac

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (6)

Идентификатор библиотеки Тип Версия
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)

Модули Проекта

Данный проект не имеет модулей.

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

Версии библиотеки

Версия
1.1.7
1.1.6
1.1.4
1.1.0