Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package main
- import (
- "testing"
- )
- func TestCrypto(t *testing.T) {
- file := "test.docx"
- priv := Generate()
- encrypt(file, priv)
- decrypt(file+LockedExtension, priv)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement