Aescrypt go implementation, does anybody know?

Hello,

does anybody know a go implemenation for:
https://www.aescrypt.com/

or an other Component/Package in go that can i use for encrypt my files before uploading to cloud ?
I will write a litle program for upload encrypt files in a cloud with golang.

My knowlege about crypto goes to zero.

What can you me commend …

Greets
Michael

I recommend NaCL secretbox: https://godoc.org/golang.org/x/crypto/nacl/secretbox

It’s designed to be safe and secure with minimal risk of compromise due to misuse by programmers inexperienced in implementing crypto.

There is also a asymmetric encryption equivalent (“box”).

Otherwise the Go standard library includes aes.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.