21 lines
442 B
Go
21 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) {
|
||
|
}
|