私は現在、BCを使用してMcElieceの暗号化を実装しようとしていますが、何らかの問題を抱えています。私は現在、キーを作成してファイルに配置する機能を持っています。プログラムに読み込むことはできますが、バイトから公開鍵に戻すことはできません。以下はMcEliece(Bouncy Castle)公開鍵を取得する
は私が現在持っているものです。
public static String EncryptText(Component tmp, String Plaintext) throws InvalidKeyException, InvalidCipherTextException {
String CipherText = "Didnt Work";
try {
// The message to encrypt.
byte[] messageBytes = Plaintext.getBytes();
//read in the Public Key to use to Encrypt.
File f = new File(tmp.getPublicKey());
FileInputStream fis = new FileInputStream(f);
byte[] PubKeybytes = new byte[fis.available()];
fis.read(PubKeybytes);
fis.close();
//turn the bytes into the Key.
X509EncodedKeySpec pubKeySpec = new X509EncodedKeySpec(PubKeybytes);
SubjectPublicKeyInfo PKI ;
KeyFactory KF = null;
try {
KF = KeyFactory.getInstance("McEliece");
} catch (NoSuchAlgorithmException ex) {
Logger.getLogger(McEliecePKCS.class.getName()).log(Level.SEVERE, null, ex);
}
PublicKey PK = null;
try {
PK = KF.generatePublic(pubKeySpec);
} catch (InvalidKeySpecException ex) {
Logger.getLogger(McEliecePKCS.class.getName()).log(Level.SEVERE, null, ex);
}
//Public Key
PublicKey aPublic = PK;
McEliecePublicKeyParameters GPKP = (McEliecePublicKeyParameters) McElieceKeysToParams.generatePublicKeyParameter(aPublic);
//set the public key to use.
McElieceCipher EnCipheredText = new McElieceCipher();
EnCipheredText.init(true, GPKP);
EnCipheredText.initCipherEncrypt(GPKP);
byte[] ciphertextBytes;
//sign the message with the public key.
ciphertextBytes = EnCipheredText.messageEncrypt(messageBytes);
CipherText = new String(ciphertextBytes);
return CipherText;
} catch (IOException ex) {
Logger.getLogger(McEliecePKCS.class.getName()).log(Level.SEVERE, null, ex);
}
return CipherText;
}\
、このコードを持つ現在のエラーイムがKeyFactoryにあり、「McElieceは」持つNoSuchAlgorithmExceptionを取得イムようなアルゴリズムはみなされませんが、何イム本当にわからないされていることそれ以外のときは試してみてください。私はまた、McElieceのBouncyCastleに含まれているKeyFactoryを使用しようとしましたが、メソッドが保護されているか、KeySpecを許可せず、KeySpecまたはByte配列を変更する方法がわからないSubjectPublicKeyInfoが必要でしたに。
申し訳ありませんが、これは単純な質問ですが、暗号化を暗号化するのにかなり新しいです。
返信いただきありがとうございます。
感謝を(私は間違っていない場合は日または2)、あなたはしばらくの後、あなた自身の答えを受け入れることができます。 –