Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 openssl 的 rc4 函数解密文件时,其中的某些部分包含车库字符
RC4_KEY key; RC4_set_key(&key, pass.length(), (const unsigned char *) pass.c_str() ); RC4(&key, text.length(), (const unsigned char *)text.c_str(),(unsigned char *)decrypted.c_str());
有什么帮助吗?谢谢