hash-base

WebJar for hash-base

Лицензия

Лицензия

MIT
Группа

Группа

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

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

hash-base
Последняя версия

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

3.1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

hash-base
WebJar for hash-base
Ссылка на сайт

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

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

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

https://github.com/crypto-browserify/hash-base

Скачать hash-base

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

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

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.webjars.npm : inherits jar [2.0.4,3)
org.webjars.npm : readable-stream jar [3.6.0,4)
org.webjars.npm : safe-buffer jar [5.2.0,6)

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

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

hash-base

NPM Package Build Status Dependency status

js-standard-style

Abstract base class to inherit from if you want to create streams implementing the same API as node crypto Hash (for Cipher / Decipher check crypto-browserify/cipher-base).

Example

const HashBase = require('hash-base')
const inherits = require('inherits')

// our hash function is XOR sum of all bytes
function MyHash () {
  HashBase.call(this, 1) // in bytes

  this._sum = 0x00
}

inherits(MyHash, HashBase)

MyHash.prototype._update = function () {
  for (let i = 0; i < this._block.length; ++i) this._sum ^= this._block[i]
}

MyHash.prototype._digest = function () {
  return this._sum
}

const data = Buffer.from([ 0x00, 0x42, 0x01 ])
const hash = new MyHash().update(data).digest()
console.log(hash) // => 67

You also can check source code or crypto-browserify/md5.js

LICENSE

MIT

org.webjars.npm

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

Версия
3.1.0
3.0.4
2.0.2
2.0.0