2

我正在使用 Crypto++ 使用 RSA 加密字节数组。我一直关注 Crypto++ wiki 的示例,但没有让它们正常工作。所有样本中的加密和解密都是在一个进程中完成的,但我试图解密已经在另一个进程中加密的内容。这是我的代码:

class FixedRNG : public CryptoPP::RandomNumberGenerator
{
public:
    FixedRNG(CryptoPP::BufferedTransformation &source) : m_source(source) {}

    void GenerateBlock(byte *output, size_t size)
    {
        m_source.Get(output, size);
    }

private:
    CryptoPP::BufferedTransformation &m_source;
};


uint16_t Encrypt()
{
    byte *oaepSeed = new byte[2048];
    for (int i =  0; i < 2048; i++)
    {
        oaepSeed[i] = (byte)i;
    }
    CryptoPP::ByteQueue bq;
    bq.Put(oaepSeed, 2048);
    FixedRNG prng(bq);
    Integer n("Value of N"),
    e("11H"),
    d("Value of D");
    RSA::PrivateKey privKey;
    privKey.Initialize(n, e, d);
    RSA::PublicKey pubKey(privKey);
    CryptoPP::RSAES_OAEP_SHA_Encryptor encryptor( pubKey );
    assert( 0 != encryptor.FixedMaxPlaintextLength() );
    byte blockSize = encryptor.FixedMaxPlaintextLength();
    int divisionCount = fileSize / blockSize;
    int proccessedBytes = 0;
    // Create cipher text space
    uint16_t cipherSize = encryptor.CiphertextLength( blockSize );
    assert( 0 != cipherSize );

    encryptor.Encrypt(prng, (byte*)plaintext, blockSize, (byte*)output);
    return cipherSize;
}

void Decrypt(uint16_t cipherSize)
{
        byte *oaepSeed = new byte[2048];
        for (int i =  0; i < 2048; i++)
        {
            oaepSeed[i] = (byte)i;
        }
        CryptoPP::ByteQueue bq;
        bq.Put(oaepSeed, 2048);
        FixedRNG prng(bq);
        Integer n("Value of N"),
        e("11H"),
        d("Value of D");
        RSA::PrivateKey privKey;
        privKey.Initialize(n, e, d);
        //RSA::PublicKey pubKey(privKey);

        CryptoPP::RSAES_OAEP_SHA_Decryptor decryptor( privKey );

        byte blockSize = decryptor.FixedMaxPlaintextLength();
        assert(blockSize != 0);

        size_t maxPlainTextSize = decryptor.MaxPlaintextLength( cipherSize );
        assert( 0 != maxPlainTextSize );
        void* subBuffer = malloc(maxPlainTextSize);
        CryptoPP::DecodingResult result = decryptor.Decrypt(prng, (byte*)cipherText, cipherSize, (byte*)subBuffer);
        assert( result.isValidCoding );
        assert( result.messageLength <= maxPlainTextSize );
}

不幸的是,isValidCoding 的值为 false。我想我对 RSA 加密/解密有误解!!
请注意,privKey 和 pubKey 已使用 KEY.Validate(prng, 3) 进行了验证。我也尝试过使用 RAW RSA 而不是 OAEP 和 SHA,但没有成功。我试图通过crypto++代码进行调试,我怀疑的是prng变量。我认为它有问题。我也使用了 AutoSeedRandomPool 而不是 FixedRNG 但它没有帮助。
值得知道的是,如果我在加密代码之后立即复制解密代码并在 Encrypt() 方法中执行它,一切都很好,并且 isValidCoding 是真的!

4

1 回答 1

0

这可能是不正确的:

byte blockSize = encryptor.FixedMaxPlaintextLength();
...

encryptor.Encrypt(prng, (byte*)plaintext, blockSize, (byte*)output);
return cipherSize;

尝试:

size_t maxLength = encryptor.FixedMaxPlaintextLength();
size_t cipherLength = encryptor.CiphertextLength( blockSize );
...

SecureByteBlock secBlock(cipherLength);

cipherLength = encryptor.Encrypt(prng, (byte*)plaintext, blockSize, secBlock);
secBlock.resize(cipherLength);

FixedMaxPlaintextLength返回 a size_t,而不是 a byte

你可能应该打电话CiphertextLengthplaintext.

我不太确定您是如何返回uint_tfrom 的encrypt()

从新开始,并使用 Crypto++ 中的示例作为起点,您可能会做得更好。我不确定这种设计是否值得追求。

如果您重新开始,那么 Shoup 的椭圆曲线集成加密方案 (ECIES) 将是一个不错的选择,因为它将公钥与对称密码和身份验证标签结合在一起。

于 2014-04-17T06:42:11.680 回答