コード例 #1
0
ファイル: CypherTests.cs プロジェクト: Tacconi/CryptoAlpha
 public void TestCaesar64EncodeA()
 {
     string testo = "ABBA";
     string codice = "D";
     string expected = "hUIBhQ//";
     Caesar64 crypt = new Caesar64();
     string codifica = crypt.Encode(testo, codice);
     Assert.AreEqual(expected, codifica);
 }
コード例 #2
0
 public void TestCaesar64EncodeNumber()
 {
     string text = "ABBA";
     int cypher = 3;
     string ris = "hUIBhQ//";
     Caesar64 crypt = new Caesar64();
     string encoder = crypt.Encode(text, cypher);
     Assert.AreEqual(encoder, ris);
 }
コード例 #3
0
 public void TestCaesar64DecodeLetter()
 {
     string text = "hUIBhQ//";
     string cypher = "D";
     string ris = "ABBA";
     Caesar64 crypt = new Caesar64();
     string decoder = crypt.Decode(text, cypher);
     Assert.AreEqual(decoder, ris);
 }
コード例 #4
0
ファイル: CypherTests.cs プロジェクト: Gheorg/CryptoAlpha
 public void TestCaesar64DecodeError()
 {
     string text = "IRCAKRA=";
     string cypher = "D";
     string ris = "ABBA";
     Caesar64 crypt = new Caesar64();
     string decode = crypt.Decode(text, cypher);
     Assert.AreEqual(decode, ris);
 }
コード例 #5
0
ファイル: CypherTests.cs プロジェクト: Gheorg/CryptoAlpha
 public async Task TestCaesar64DecodeAsyncOk()
 {
     string text = "hUIBhQ//";
     string cypher = "D";
     string ris = "ABBA";
     Caesar64 crypt = new Caesar64();
     string decode =await crypt.DecodeAsync(text, cypher);
     Assert.AreEqual(decode, ris);
 }
コード例 #6
0
ファイル: CypherTests.cs プロジェクト: Gheorg/CryptoAlpha
 public void TestCaesar64EncodeOk()
 {
     string text = "ABBA";
     string cypher = "D";
     string ris = "hUIBhQ//";
     Caesar64 crypt = new Caesar64();
     string encode = crypt.Encode(text, cypher);
     Assert.AreEqual(encode, ris);
 }