Go?語言簡單實現(xiàn)Vigenere加密算法
Vigenere 加密算法
該密碼由意大利密碼學(xué)家 Giovan Battista Bellaso 于 1553 年發(fā)明,但幾個世紀(jì)以來一直歸功于 16 世紀(jì)的法國密碼學(xué)家 Blaise de Vigenère,他在 1586 年設(shè)計了類似的密碼。
Vigenere Cipher 是一種加密字母文本的方法。它使用一種簡單的多字母表替換形式。多字母密碼是基于替換的任何密碼,使用多個替換字母表。原始文本的加密是使用 Vigenère square 或 Vigenère table 完成的。
該表由在不同行中寫出 26 次的字母組成,與前一個字母相比,每個字母循環(huán)向左移動,對應(yīng)于 26 種可能的凱撒密碼。
在最簡單的 Vigenère 類型系統(tǒng)中,密鑰是一個單詞或短語,它可以根據(jù)需要重復(fù)多次以加密消息。如果密鑰是欺騙性的,并且消息是我們被發(fā)現(xiàn)了,請自救,那么生成的密碼將是

在加密過程的不同點,密碼使用與其中一行不同的字母表。每個點使用的字母取決于重復(fù)的關(guān)鍵字。
又例如:
Input : Plaintext : GEEKSFORGEEKS
Keyword : AYUSH
Output : Ciphertext : GCYCZFMLYLEIM
For generating key, the given keyword is repeated
in a circular manner until it matches the length of
the plain text.
The keyword "AYUSH" generates the key "AYUSHAYUSHAYU"
The plain text is then encrypted using the process
explained below.加密:
明文的第一個字母 G 與密鑰的第一個字母 A 配對。所以使用 Vigenère 正方形的 G 行和 A 列,即 G。同理,對于明文的第二個字母,使用密鑰的第二個字母,E 行的字母,Y 列的字母是 C。明文以類似的方式加密。
解密的方法是到表中與密鑰對應(yīng)的行,找到該行中密文字母的位置,然后將該列的標(biāo)簽作為明文。例如,在 A 行(來自 AYUSH)中,密文 G 出現(xiàn)在 G 列中,這是第一個明文字母。接下來,我們轉(zhuǎn)到 Y 行(來自 AYUSH),找到在 E 列中找到的密文 C,因此 E 是第二個明文字母。
一個更簡單的實現(xiàn)可能是通過將 [A-Z] 轉(zhuǎn)換為數(shù)字 [0-25] 以代數(shù)方式可視化 Vigenère。
Go 代碼
package main
import (
"fmt"
"strings"
)
func encodeString(cipher, key rune) rune {
const asciiA rune = 65
const numLetters = 26
plainTextIndex := cipher + key
asciiLetter := (plainTextIndex+numLetters)%numLetters + asciiA
return asciiLetter
}
func encode(message, kw string) string {
var plainText strings.Builder
kwChars := []rune(kw)
for i, cipherChar := range message {
key := i % len(kwChars)
plainText.WriteRune(encodeString(cipherChar, kwChars[key]))
}
return plainText.String()
}
func decipherString(cipher, key rune) rune {
const asciiA rune = 65
const numLetters = 26
plainTextIndex := cipher - key
asciiLetter := (plainTextIndex+numLetters)%numLetters + asciiA
return asciiLetter
}
func decipher(message, kw string) string {
var plainText strings.Builder
kwChars := []rune(kw)
for i, cipherChar := range message {
key := i % len(kwChars)
plainText.WriteRune(decipherString(cipherChar, kwChars[key]))
}
return plainText.String()
}
func main() {
fmt.Println("Enter Your string: ")
var first string
fmt.Scanln(&first)
fmt.Println("Enter your KEY: ")
var second string
fmt.Scanln(&second)
cipherText := first
keyword := second
fmt.Print("Do you want to 1. Encrypt or 2. Decrypt")
var option int
fmt.Scanln(&option)
if option == 1 {
fmt.Println(encode(cipherText, keyword))
} else if option == 2 {
fmt.Println(decipher(cipherText, keyword))
} else {
fmt.Println("please choose the right option")
}
}到此這篇關(guān)于Go 語言簡單實現(xiàn) Vigenere 加密算法的文章就介紹到這了,更多相關(guān)Go Vigenere 內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
CSP communicating sequential processes并發(fā)模型
這篇文章主要為大家介紹了CSP communicating sequential processes并發(fā)模型,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-05-05
Golang中json和jsoniter的區(qū)別使用示例
這篇文章主要介紹了Golang中json和jsoniter的區(qū)別使用示例,本文給大家分享兩種區(qū)別,結(jié)合示例代碼給大家介紹的非常詳細(xì),感興趣的朋友跟隨小編一起看看吧2023-12-12
Golang的Crypto/SHA256庫實戰(zhàn)指南
無論是在保護數(shù)據(jù)安全、驗證數(shù)據(jù)完整性,還是在構(gòu)建復(fù)雜的安全系統(tǒng)中,crypto/sha256都是Golang程序員不可或缺的工具,本文主要介紹了Golang的Crypto/SHA256庫實戰(zhàn)指南,感興趣的可以了解一下2024-02-02

