Skip to content

osoco/pharo-non-cryptographic-hashes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pharo-non-cryptographic-hashes

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Build Status Coverage Status Pharo version Pharo version License

Collection of non-cryptographic hash functions for Pharo Smalltalk.

It includes the following hash functions:

  • MurmurHash3 32-bits x86 variant.
  • MurmurHash3 128-bits x64 variant.

Installation

To install pharo-non-cryptographic-hashes on your Pharo image you can just find it in the Pharo Project Catalog (World menu > Tools > Catalog Browser) and click in the green mark icon in the upper right corner to install the latest stable version:

Pharo Project Catalog with the project selected

Or, you can also execute the following script:

    Metacello new
      baseline: #NonCryptographicHashes;
    	repository: 'github://osoco/pharo-non-cryptographic-hashes:master/src';
    	load

To add this project to your own project's baseline just add this:

    spec
    	baseline: #NonCryptographicHashes
    	with: [ spec repository: 'github://osoco/pharo-non-cryptographic-hashes:master/src' ]

Note that you can replace the master by another branch or a tag.

License

This project is written and supported by developers at OSOCO and published as free and open source software under an MIT license.