updated golint error

This commit is contained in:
Derek McQuay 2016-03-12 21:06:25 -08:00
parent 64c7d7617a
commit 08a2266d5f
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package psyfer
//VigenereCipher performts vigenere on input
func VigenereCipher(input string, key string, decrypt bool) string {
alphabet := "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
chars := []rune(input)