- 1、本文档共18页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
替换和移位(Substitution and displacement)
替换和移位(Substitution and displacement)
Three, character substitution and shift
Please prepare the function encryptChar (topic 8), according to the given substitution for all characters in the XX array of alternative, stored in the XX array corresponding to the position, alternative relationship: F (P) =p*11 mod 256 (P is a character array in ASCII, f (P) is a new character the calculation of ASCII value, after) if the calculated value is less than or equal to f (P) 32 or greater than 130, then the character unchanged, or F (P) will be replaced by the corresponding characters.
Void, encryptChar ()
{int, I, j;
For (i=0; imaxline; i++)
For (j=0; jstrlen (XX); j++)
If (xx[j]*11%256=32||xx[j]*11%256130) continue;
Else xx[j]=xx[j]*11%256;
}
Topic 36
The function encryptChar (), f (P): substitution between =p*11 mod 256 (P is a character array in ASCII, f (P) is a new character of the ASCII value, after) if the calculated value is less than or equal to f (P) 32 or F (P) character corresponding to the number is 0 to 9, the same characters, or F (P) will be replaced by the corresponding characters.
Void, encryptChar ()
{int, I, j;
For (i=0; imaxline; i++)
For (j=0; jstrlen (XX); j++)
If (xx[j]*11%256=32||xx[j]*11%256=0xx[j]*11%256=9) continue;
Else xx[j]=xx[j]*11%256;
}
Topic 56
(encryptChar), f (P): substitution between =p*11mod 256 (P is a character array in ASCII, f (P) is a new character of the ASCII value, after) if the calculated value is less than or equal to f (P) 32 or F (P) corresponding to the character is a lowercase letter, then the character unchanged, or F (P) will be replaced by the corresponding characters.
Void, encryptChar ()
{int, I, j;
For (i=0; imaxline; i++)
For (j=0; jstrlen (XX); j++)
If (xx[j]*11%256=32||xx[j]*11%256=axx[j]*11%256=z) continue;
Else xx[j]=xx[j]*11%256;
}
Title 62 (character substitution)
Function encryptChar (),
Alternative: F (P) =p*13 mod 256 (P is a character array in ASCII, f (P) is a new character of the ASCII value, after) if the
您可能关注的文档
- 无法消除原声中人声的道理(Can not eliminate the original voice of the truth).doc
- 无法破解的软件注册码算法(Can not crack the software registration code algorithm).doc
- 无法阻挡的highkick目录.doc
- 无症状高尿酸血症合并心血管疾病诊治建议专家共识(终稿)(Expert consensus on the diagnosis and treatment of asymptomatic hyperuricemia complicated with cardiovascular disease (final version)).doc
- 无粘结预应力混凝土平板开洞技术(Opening technology of unbonded prestressed concrete slabs).doc
- 无痛胃镜(Painless gastroscopy).doc
- 无精症如何检查(How can azoospermia be examined).doc
- 无机房故障(Inorganic room failure).doc
- 无线上网摇摆不定故障的解决(The solution of wireless Internet wavering failure).doc
- 无级变速器原理及其缺陷(Principle and defects of continuously variable transmission).doc
- 最全的泡脚妙招——体寒之人必读(这几分钟可不白费哦)(The whole body cold feet coup read (a few minutes can not waste oh)).doc
- 最全的泡脚妙招——体寒之人必读(The whole body cold feet coup must).doc
- 最全化妆品成分名称中英法文对照(The most complete cosmetic ingredients are in Chinese and French).doc
- 最全的满洲里市介绍(The most comprehensive introduction to Manchuria City).doc
- 最全的防酒、醒酒、解酒法(The most complete anti wine, sober, hangover law).doc
- 最全防灾自救必备(The most comprehensive disaster prevention self-help necessary).doc
- 最全面的化妆步骤(The most comprehensive makeup steps).doc
- 最全高考的拼音(The most comprehensive entrance Pinyin).doc
- 最初的桂林米粉(The original Guilin rice noodle).doc
- 最变态的题答出来不是天生侦探就是变态(The most unusual question is not a born detective, or a pervert).doc
文档评论(0)