An open API service indexing awesome lists of open source software.

https://github.com/JuliaCrypto/Ripemd.jl

Pure Julia Ripemd160 implementation
https://github.com/JuliaCrypto/Ripemd.jl

cryptography hash-functions julia ripemd ripemd160

Last synced: 2 months ago
JSON representation

Pure Julia Ripemd160 implementation

Awesome Lists containing this project

README

          

# Ripemd.jl

[![Build Status](https://travis-ci.org/JuliaCrypto/Ripemd.jl.svg?branch=master)](https://travis-ci.org/JuliaCrypto/Ripemd.jl)
[![codecov.io](http://codecov.io/github/JuliaCrypto/Ripemd.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaCrypto/Ripemd.jl?branch=master)

Pure Julia implementation of the [Ripemd](https://en.wikipedia.org/wiki/RIPEMD) hashing algorithm.
Currently only Ripemd160 is implemented and convenience functions are missing.

Usage is very simple:
```julia
julia> using Ripemd

julia> bytes2hex(ripemd160(b"test"))
"5e52fee47e6b070565f74372468cdc699de89107"
```