本文整理汇总了C#中Crypto.NormalizeCiphertext方法的典型用法代码示例。如果您正苦于以下问题:C# Crypto.NormalizeCiphertext方法的具体用法?C# Crypto.NormalizeCiphertext怎么用?C# Crypto.NormalizeCiphertext使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Crypto
的用法示例。
在下文中一共展示了Crypto.NormalizeCiphertext方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Normalized_ciphertext_is_split_by_height_of_square
public void Normalized_ciphertext_is_split_by_height_of_square()
{
var crypto = new Crypto("Vampires are people too!");
Assert.That(crypto.NormalizeCiphertext(), Is.EqualTo("vrel aepe mset paoo irpo"));
}
示例2: Normalized_ciphertext_is_split_into_segements_of_correct_size_when_just_less_than_full_square
public void Normalized_ciphertext_is_split_into_segements_of_correct_size_when_just_less_than_full_square()
{
var crypto = new Crypto("I am");
Assert.That(crypto.NormalizeCiphertext(), Is.EqualTo("im a"));
}
示例3: Normalized_ciphertext_is_split_into_segements_of_correct_size
public void Normalized_ciphertext_is_split_into_segements_of_correct_size()
{
var crypto = new Crypto("If man was meant to stay on the ground god would have given us roots");
Assert.That(crypto.NormalizeCiphertext(), Is.EqualTo("imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghns seoau"));
}
示例4: Normalized_ciphertext_is_split_into_segements_of_correct_size_with_punctuation
public void Normalized_ciphertext_is_split_into_segements_of_correct_size_with_punctuation()
{
var crypto = new Crypto("Have a nice day. Feed the dog & chill out!");
Assert.That(crypto.NormalizeCiphertext(), Is.EqualTo("hifei acedl veeol eddgo aatcu nyhht"));
}
示例5: Normalized_ciphertext_not_exactly_divisible_by_5_spills_into_a_smaller_segment
public void Normalized_ciphertext_not_exactly_divisible_by_5_spills_into_a_smaller_segment()
{
var crypto = new Crypto("Madness, and then illumination.");
Assert.That(crypto.NormalizeCiphertext(), Is.EqualTo("msemo aanin dninn dlaet ltshu i"));
}