* added encrypt, decrypt commands (empty now) * use command abbreviation util library * switched to go1.13 (ed25519 now in stdlib) * added new code to convert/manage Ed25519 keys to Curve25519 (thanks to FiloSottile/age)
20 lines
442 B
Go
20 lines
442 B
Go
// crypt.go -- Encrypt/decrypt command handling
|
|
//
|
|
// (c) 2016 Sudhi Herle <sudhi@herle.net>
|
|
//
|
|
// Licensing Terms: GPLv2
|
|
//
|
|
// If you need a commercial license for this work, please contact
|
|
// the author.
|
|
//
|
|
// This software does not come with any express or implied
|
|
// warranty; it is provided "as is". No claim is made to its
|
|
// suitability for any purpose.
|
|
|
|
package main
|
|
|
|
func encrypt(args []string) {
|
|
}
|
|
|
|
func decrypt(args []string) {
|
|
}
|