Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/izelnakri/aes256
AES256 implementation in Elixir
https://github.com/izelnakri/aes256
aes aes256 cryptography elixir encryption symmetric-cryptography
Last synced: about 1 month ago
JSON representation
AES256 implementation in Elixir
- Host: GitHub
- URL: https://github.com/izelnakri/aes256
- Owner: izelnakri
- License: mit
- Created: 2017-07-30T21:14:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-21T20:19:06.000Z (almost 2 years ago)
- Last Synced: 2024-10-04T00:25:59.201Z (about 1 month ago)
- Topics: aes, aes256, cryptography, elixir, encryption, symmetric-cryptography
- Language: Elixir
- Size: 195 KB
- Stars: 7
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# AES-256
Secure AES256-CBC mode implementation in Elixir. Documentation coming soon, meanwhile feel free to read the source code + tests.
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `aes256` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:aes256, "~> 0.5.0"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/aes256](https://hexdocs.pm/aes256).## License
The MIT License (MIT)
Copyright (c) 2016 Izel NakriPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.