当前位置: 首页>>代码示例>>C#>>正文


C# Crypto.NormalizeCiphertext方法代码示例

本文整理汇总了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"));
 }
开发者ID:cds-amal,项目名称:exercism,代码行数:5,代码来源:CryptoSquareTest.cs

示例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"));
 }
开发者ID:cds-amal,项目名称:exercism,代码行数:5,代码来源:CryptoSquareTest.cs

示例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"));
 }
开发者ID:cds-amal,项目名称:exercism,代码行数:5,代码来源:CryptoSquareTest.cs

示例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"));
 }
开发者ID:cds-amal,项目名称:exercism,代码行数:5,代码来源:CryptoSquareTest.cs

示例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"));
 }
开发者ID:cds-amal,项目名称:exercism,代码行数:5,代码来源:CryptoSquareTest.cs


注:本文中的Crypto.NormalizeCiphertext方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。