Re: [go-nuts] file or folder encryption tool

2016-09-19 Thread DrGo
Thanks Nick,
This looks promising!

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] file or folder encryption tool

2016-09-19 Thread Nick Craig-Wood
On 19/09/16 10:49, DrGo wrote:
> Has any used Go to develop a cross-platform an easy-to-use utility to encrypt 
> individual files or folders? 
> 

You could use rclone to encrypt a directory of files.  It can also
transfer them to cloud storage systems too!

See rclone.org for docs and github.com/ncw/rclone for code.

What you would do is configure a crypt remote using a directory on your
disk.  You can then rclone copy /path/to/unencryptedfiles remote:

It perhaps isn't exactly the workflow you want but it is written in Go!

It uses the go port of secret box for encrypting stuff.

-- 
Nick Craig-Wood  -- http://www.craig-wood.com/nick

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.