https://github.com/xeodou/aesf
RFC2898 key derivation AES encryption with sha1HMAC verification data encrypt/decrypt tool in golang
https://github.com/xeodou/aesf
aes-256-ctr encryption-tool golang rfc-2898
Last synced: about 1 year ago
JSON representation
RFC2898 key derivation AES encryption with sha1HMAC verification data encrypt/decrypt tool in golang
- Host: GitHub
- URL: https://github.com/xeodou/aesf
- Owner: xeodou
- License: mit
- Created: 2017-02-18T16:52:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-05-25T08:15:24.000Z (about 6 years ago)
- Last Synced: 2025-04-10T03:55:48.801Z (about 1 year ago)
- Topics: aes-256-ctr, encryption-tool, golang, rfc-2898
- Language: Go
- Size: 6.84 KB
- Stars: 7
- Watchers: 0
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AESf
==========
[](https://travis-ci.org/xeodou/aesf)
AESf package combines AES encryption, sha1HMAC verification and RFC2898 key derivation, which provide a very security way to encryp/decrypt data in golang.
**Key features**
- Support AES-128, AES-192, or AES-256.
- Use CTR mode for encrytion.
- Sha1HMAC for signature authentication.
- Password verify before decryption.
- RFC2898 as salt generater.
The whole idea is coming from @BrianGladman 's blog [http://www.gladman.me.uk/cryptography_technology/fileencrypt](http://www.gladman.me.uk/cryptography_technology/fileencrypt).
Installation
------------
This package can be installed with the go get command:
go get github.com/xeodou/aesf
Documentation
-------------
API documentation can be found here: http://godoc.org/github.com/xeodou/aesf
Examples can be found under the `./example_test.go` directory
License
-------
MIT
Author
------
[xeodou](https://xeodou.me)