Skip to content

Commit

Permalink
Removed debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
nsmithuk committed Nov 7, 2017
1 parent 9d5d550 commit 98575a1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/encryption/encrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"crypto/rand"
"io"
"crypto/cipher"
"log"
)

func Encrypt( key [32]byte, plaintextString string ) []byte {
Expand All @@ -22,8 +21,6 @@ func Encrypt( key [32]byte, plaintextString string ) []byte {
panic(err.Error())
}

log.Println(nonce)

aesgcm, err := cipher.NewGCM(block)
if err != nil {
panic(err.Error())
Expand Down

0 comments on commit 98575a1

Please sign in to comment.