Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "farmhash", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"author": "Lovell Fuller <npm@lovell.info>", | ||
@@ -9,3 +9,3 @@ "contributors": [ | ||
], | ||
"description": "Node.js implementation of FarmHash, Google's family of high performance hash functions for strings", | ||
"description": "Node.js implementation of FarmHash, Google's family of very fast hash functions", | ||
"scripts": { | ||
@@ -27,3 +27,3 @@ "test": "node test/unit" | ||
"dependencies": { | ||
"nan": "^2.0.5" | ||
"nan": "^2.2.0" | ||
}, | ||
@@ -30,0 +30,0 @@ "license": "Apache-2.0", |
# farmhash | ||
Node.js implementation of Google's [FarmHash](https://github.com/google/farmhash) family of very fast hash functions. | ||
Node.js implementation of Google's | ||
[FarmHash](https://github.com/google/farmhash) | ||
family of very fast hash functions. | ||
FarmHash is the successor to CityHash. | ||
Functions in the FarmHash family are not suitable for cryptography. | ||
A fast, cryptographically-secure alternative is | ||
[HighwayHash](https://github.com/lovell/highwayhash). | ||
As the V8 JavaScript engine only natively supports 32-bit unsigned integers, | ||
the 64-bit methods return String objects instead of Numbers | ||
the 64-bit methods return strings instead of Numbers | ||
and the 128-bit methods are not implemented. | ||
This module uses FarmHash v1.1.0 (2015-03-01). | ||
It has been tested with Node.js v0.10, v0.12 and io.js v2.x, v3.x | ||
It has been tested with Node.js v0.10, v0.12, v4, v5 | ||
on Linux, OS X and Windows. | ||
@@ -57,3 +61,5 @@ | ||
The hash methods are platform dependent. Different CPU architectures, for example 32-bit vs 64-bit, Intel vs ARM, might produce different results for a given input. | ||
The hash methods are platform dependent. | ||
Different CPU architectures, for example 32-bit vs 64-bit, Intel vs ARM, SSE4.2 vs AVX | ||
might produce different results for a given input. | ||
@@ -121,3 +127,3 @@ #### hash32(input) | ||
Copyright 2014, 2015 Lovell Fuller and contributors. | ||
Copyright 2014, 2015, 2016 Lovell Fuller and contributors. | ||
@@ -127,4 +133,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); | ||
You may obtain a copy of the License at | ||
[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0.html) | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
@@ -131,0 +138,0 @@ distributed under the License is distributed on an "AS IS" BASIS, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
787918
159
5
20
Updatednan@^2.2.0