在C语言中,位运算是非常强大的工具,可以用来进行数据加密
#include <stdio.h>
void xor_encrypt_decrypt(unsigned char *data, int length, unsigned char key) {
for (int i = 0; i < length; i++) {
data[i] ^= key;
}
}
int main() {
unsigned char plaintext[] = "Hello, World!";
int length = sizeof(plaintext) - 1; // 不包括空字符
unsigned char key = 0x5A; // 示例密钥
printf("Plaintext: %s\n", plaintext);
xor_encrypt_decrypt(plaintext, length, key);
printf("Encrypted: %s\n", plaintext);
xor_encrypt_decrypt(plaintext, length, key);
printf("Decrypted: %s\n", plaintext);
return 0;
}
这个示例中,我们定义了一个名为xor_encrypt_decrypt
的函数,它接受一个数据指针、数据长度和密钥作为参数。函数通过对数据进行异或操作(使用XOR运算符)来加密或解密数据。在main
函数中,我们使用一个简单的字符串作为明文,并将其加密和解密。
#include <stdio.h>
unsigned char xor_encrypt(unsigned char data, unsigned char key) {
return data ^ key;
}
unsigned char xor_decrypt(unsigned char data, unsigned char key) {
return data ^ key;
}
int main() {
unsigned char plaintext[] = "Hello, World!";
int length = sizeof(plaintext) - 1; // 不包括空字符
unsigned char key = 0x5A; // 示例密钥
printf("Plaintext: %s\n", plaintext);
for (int i = 0; i < length; i++) {
plaintext[i] = xor_encrypt(plaintext[i], key);
}
printf("Encrypted: %s\n", plaintext);
for (int i = 0; i < length; i++) {
plaintext[i] = xor_decrypt(plaintext[i], key);
}
printf("Decrypted: %s\n", plaintext);
return 0;
}
在这个示例中,我们定义了两个单独的函数xor_encrypt
和xor_decrypt
,分别用于加密和解密单个数据。在main
函数中,我们遍历明文中的每个字符,并使用这些函数进行加密和解密。
请注意,这些示例仅用于演示目的,实际应用中可能需要更复杂和安全的加密算法。例如,您可以使用AES、DES等加密算法,或者使用现成的加密库,如OpenSSL。