From 360c363aa355591a158a37c4824feea6da7c9224 Mon Sep 17 00:00:00 2001 From: boydgreenfield Date: Sun, 8 Dec 2013 22:20:51 -0800 Subject: [PATCH] Add bloom package Efficient Bloom filter implementation in Nimrod, with a default C implementation of MurmurHash3 for hashing (optional Nimrod built-in hash functions may be used as well). --- packages.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 7fe04a2..0e06cb8 100644 --- a/packages.json +++ b/packages.json @@ -471,6 +471,16 @@ "tags": ["library", "wrapper", "binding", "crypto", "cryptography", "hash", "password", "security"], "description": "Binding and utilities for scrypt", "license": "CC0" - } + }, + + { + "name": "bloom", + "url": "git://github.com/boydgreenfield/nimrod-bloom/", + "method": "git", + "tags": ["Bloom filter", "Bloom", "probabilistic", "data structure", "set membership", "MurmurHash", "MurmurHash3"], + "description": "Efficient Bloom filter implementation in Nimrod using MurmurHash3.", + "license": "MIT", + "web": "https://www.github.com/boydgreenfield/nimrod-bloom/" + } ]