English 中文(简体)
标签:的问答
我已撰写了C区法。 它正确地对上案的函件进行加密/加密,但错误地将加密/加密放在下级文字上。
原文:I have written the code of affine cipher in C. It correctly encrypts/decrypts the uppercase letters but incorrectly encrypts/decrypts lowercase letter

#include <stdio.h> #include <stdlib.h> #include <time.h> # define MAX_LENGTH 100 int GCD(int a, int b) { if(b == 0) { return a; } GCD(b, a%b); } struct Pair{ ...

AES 替代框
原文:Substitution box for AES

我需要执行 AES (高级加密标准) 。 根据标准, 每一轮我用 s-box 替换字节( 如 : 4F - > 84) 。 我的问题是, 我是否需要在我的 c++ 源中存储 s- box...

热门标签