overflow_probe/file_cipher/file_cipher_test.go
2017-08-03 19:08:34 +09:00

12 lines
269 B
Go

package file_cipher_go
import "testing"
func TestEncrypt(t *testing.T) {
Encrypt("/home/insanity/addressbook.proto", "/home/insanity/addressbook.enc")
}
func TestDecrypt(t *testing.T) {
Decrypt("/home/insanity/addressbook.enc", "/home/insanity/addressbook.dec")
}