create-hash

WebJar for create-hash

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

create-hash
Last Version

Last Version

1.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

create-hash
WebJar for create-hash
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

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

Download create-hash

How to add to project

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

Dependencies

compile (5)

Group / Artifact Type Version
org.webjars.npm : sha.js jar [2.4.0,3)
org.webjars.npm : md5.js jar [1.3.4,2)
org.webjars.npm : ripemd160 jar [2.0.1,3)
org.webjars.npm : inherits jar [2.0.1,3)
org.webjars.npm : cipher-base jar [1.0.1,2)

Project Modules

There are no modules declared in this project.

create-hash

Build Status

Node style hashes for use in the browser, with native hash functions in node.

API is the same as hashes in node:

var createHash = require('create-hash')
var hash = createHash('sha224')
hash.update('synchronous write') // optional encoding parameter
hash.digest() // synchronously get result with optional encoding parameter

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

To get the JavaScript version even in node do require('create-hash/browser')

org.webjars.npm

Versions

Version
1.2.0
1.1.3
1.1.2