repositorypackage
0.0.0-20170304182850-94b2f4490a65
Repository: https://github.com/isfonzar/filecrypt.git
Documentation: pkg.go.dev
# README
About filecrypt
filecrypt is a Go library to easily encrypt and decrypt files using the GCM encryption.
Installation
Option 1: Go Get
import "github.com/isfonzar/filecrypt"
Usage
// Encrypts a file
filecrypt.Encrypt(file, password)
// Decrypts a file
filecrypt.Decrypt(file, password)
Contributing
Bug Reports & Feature Requests
Please use the issue tracker to report any bugs or file feature requests.
Developing
PRs are welcome. To begin developing, do this:
$ git clone --recursive [email protected]:isfonzar/CryptoGo.git
$ cd CryptoGo/
Social Coding
- Create an issue to discuss about your idea
- [Fork it] (https://github.com/isfonzar/filecrypt/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Profit! :white_check_mark: