Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/2hgo/blowfish.jl
Blowfish.jl is an implementation of Bruce Schneier's Blowfish encryption algorithm.
https://github.com/2hgo/blowfish.jl
blowfish crypto encryption julia julia-language julialang
Last synced: about 1 month ago
JSON representation
Blowfish.jl is an implementation of Bruce Schneier's Blowfish encryption algorithm.
- Host: GitHub
- URL: https://github.com/2hgo/blowfish.jl
- Owner: 2HgO
- License: mit
- Created: 2020-06-26T13:36:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-01T21:18:17.000Z (over 4 years ago)
- Last Synced: 2024-11-20T01:17:47.225Z (about 1 month ago)
- Topics: blowfish, crypto, encryption, julia, julia-language, julialang
- Language: Julia
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Blowfish.jl
Blowfish.jl is an implementation of Bruce Schneier's Blowfish encryption algorithm.
This implementation was loosely transcribed from the [Go](https://golang.org)(golang) port of [Bruce Schneier's C implementation](https://www.schneier.com/blowfish.html).
See [crpto/blowfish](https://pkg.go.dev/golang.org/x/crypto/blowfish)## Installation
---
From a julia session, run:
```julia-repl
julia> using Pkg
julia> Pkg.add("Blowfish")
```## License
---
The source code for the package `Blowfish.jl` is licensed under the MIT License.