Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcelog/erl_md2
MD2 implementation in Erlang
https://github.com/marcelog/erl_md2
erlang md2
Last synced: about 11 hours ago
JSON representation
MD2 implementation in Erlang
- Host: GitHub
- URL: https://github.com/marcelog/erl_md2
- Owner: marcelog
- License: apache-2.0
- Created: 2017-09-08T16:54:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-08T16:54:39.000Z (over 7 years ago)
- Last Synced: 2024-11-16T06:58:23.822Z (about 2 months ago)
- Topics: erlang, md2
- Language: Erlang
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# erl_md2
MD2 implementation in Erlang, as explained in http://www.umich.edu/~x509/ssleay/rfc1319.html
and corrected by http://www.rfc-editor.org/errata/rfc1319.This is not optimized in any way, but was written just for fun.
# Example
```
1> Ctx = erl_md2:ctx_init().
2> NewCtx = erl_md2:ctx_update(Ctx, <<"abcdefghijklmnopqrstuvwxyz">>).
3> erl_md2:ctx_final(NewCtx).
"4e8ddff3650292ab5a4108c3aa47940b"
```## License
The source code is released under Apache 2 License.Check [LICENSE](https://github.com/marcelog/erl_lzw/blob/master/LICENSE) file for more information.