https://github.com/2hgo/bcrypt.jl
Bcrypt.jl is an implementation Provos and Mazières's bcrypt adaptive hashing algorithm.
https://github.com/2hgo/bcrypt.jl
bcrypt crypto encryption julia julia-language julialang
Last synced: 12 months ago
JSON representation
Bcrypt.jl is an implementation Provos and Mazières's bcrypt adaptive hashing algorithm.
- Host: GitHub
- URL: https://github.com/2hgo/bcrypt.jl
- Owner: 2HgO
- License: mit
- Created: 2020-06-26T14:17:08.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-11T13:18:16.000Z (about 3 years ago)
- Last Synced: 2025-04-13T05:45:35.925Z (about 1 year ago)
- Topics: bcrypt, crypto, encryption, julia, julia-language, julialang
- Language: Julia
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Bcrypt.jl
Bcrypt.jl is an implementation [Provos and Mazières's bcrypt adaptive hashing algorithm](http://www.usenix.org/event/usenix99/provos/provos.pdf).
This implementation was loosely transcribed from the [Go](https://golang.org)(golang) implementation of the algorithm.
See [crypto/bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt).
## Installation
---
From a julia session, run:
```julia-repl
julia> using Pkg
julia> Pkg.add("Bcrypt")
```
## License
---
The source code for the package `Bcrypt.jl` is licensed under the MIT License.