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
- Host: GitHub
- URL: https://github.com/JuliaCrypto/Ripemd.jl
- Owner: JuliaCrypto
- License: other
- Created: 2018-02-11T18:55:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-30T18:59:18.000Z (almost 6 years ago)
- Last Synced: 2025-05-13T01:37:11.225Z (about 1 year ago)
- Topics: cryptography, hash-functions, julia, ripemd, ripemd160
- Language: Julia
- Size: 25.4 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-julia-security - Ripemd.jl - Pure Julia RIPEMD-160 implementation. (Cryptography / Hash Functions)
README
# Ripemd.jl
[](https://travis-ci.org/JuliaCrypto/Ripemd.jl)
[](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"
```