1

我有一个 202 字节的密钥,用于解密二进制文件。

StringSource keyStr( key, Z3_KEY_LENGTH, true );
AutoSeededRandomPool rng;
ECIES<ECP>::Decryptor ellipticalEnc( keyStr );
unsigned char *tmpBuffer( new unsigned char[ src.Size() ] );
DecodingResult dr = ellipticalEnc.Decrypt( rng, src.Data(), src.Size(), tmpBuffer );

我尝试为此使用 jsafejce:

PKCS8EncodedKeySpec privKeySpec = new PKCS8EncodedKeySpec(key);
KeyFactory factory = KeyFactory.getInstance("EC", "JsafeJCE");
PrivateKey privateKey = factory.generatePrivate(privKeySpec);
Cipher eciesDecrypter = Cipher.getInstance("ECIES/SHA1/HMACSHA1", "JsafeJCE");

Cipher eciesDecrypter = Cipher.getInstance("ECIESwithXOR/SHA1/HMACSHA1", "JsafeJCE");

但是第一个我得到一个块错误,必须除以 16,第二个我得到一个 mac 检查错误。

有没有人有什么建议?

4

2 回答 2

1

好吧,我真的不知道您要在代码中做什么。我会试着回答一些问题。


将 ECIES ECP CryptoPP 转换为 JAVA

要从 Crypto++ 中获得意义,它的难度如下:

// Assuming your key was DER Encoded
byte key[Z3_KEY_LENGTH] = ...;

ECIES<ECP>::Decryptor decryptor;
decryptor.BERDecodePublicKey(ArraySource(key, sizeof(key)).Ref(), false, sizeof(key));

const ECPPoint& point = decryptor.GetPublicElement();
const Integer& x = point.x;
const Integer& y = point.y;

如果您的密钥不是 DER 编码,请参阅Crypto++ wiki 中的密钥和格式。您还有关于Elliptic Curve Integrated Encryption Scheme的 wiki 页面。

Java 7 提供了ECPoint 类,它采用 X 和 Y 坐标。


> ECIES<ECP>::Decryptor ellipticalEnc( keyStr );
> unsigned char *tmpBuffer( new unsigned char[ src.Size() ] );
> DecodingResult dr = ellipticalEnc.Decrypt( rng, src.Data(), src.Size(), tmpBuffer );

这看起来不太正确,但是您没有显示足够的代码。

size_t maxLength = decryptor.MaxPlaintextLength( src.Size() );
unsigned char *tmpBuffer = new unsigned char[ maxLength ];

DecodingResult dr = ellipticalEnc.Decrypt( rng, src.Data(), src.Size(), tmpBuffer );
if( !result.isValidCoding )
    throw runtime_error("failed to decrypt cipher text");

unsigned char *buffer = new unsigned char[ result.messageLength ];
std::cpy(tmpBuffer, buffer, result.messageLength);
于 2013-10-02T08:46:56.130 回答
0

您是否尝试在密钥末尾添加一些空字节,使其长度为 208 字节?这可能会解决您的块大小错误。

于 2012-09-27T20:54:46.360 回答