isfonzar / filecrypt

File encrypter package written in GoLang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Language GoReportCard License Status

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 git@github.com:isfonzar/CryptoGo.git
$ cd CryptoGo/

Social Coding

  1. Create an issue to discuss about your idea
  2. [Fork it] (https://github.com/isfonzar/filecrypt/fork)
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request
  7. Profit! ✅

About

File encrypter package written in GoLang

License:MIT License


Languages

Language:Go 100.0%