You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hybrid Cyphers, e.g. McEliece cryptosystem does not work in operations view, as you cannot select whether you want to encrypt or decrypt.
The reason should be: you provide a key pair which preselects encrypt for public key and decrypt for private key, this seems to fail for hybrid ciphers
The text was updated successfully, but these errors were encountered:
The problem is probably caused by a mix-up of calling initEncrypt(...) and initDecrypt(...) in
org.jcryptool.crypto.flexiprovider.engines.cipher.AsymmetricHybridCipherEngine.init(...).
In the decrypt-Branch in lines 54/55 it should be initDecrypt(...) insteadof initEncrypt and in the else-branch in line 59 it should be initEncrypt instead of initDecrypt.
Hybrid Cyphers, e.g. McEliece cryptosystem does not work in operations view, as you cannot select whether you want to encrypt or decrypt.
The reason should be: you provide a key pair which preselects encrypt for public key and decrypt for private key, this seems to fail for hybrid ciphers
The text was updated successfully, but these errors were encountered: