-
Hi,
I have setup the react-native-crypto library and everything is working fine, but I wanted to use `crypto.constants.RSA_PKCS1_OAEP_PADDING` in
` const encryptedData = crypto.publicEncrypt(
…
-
It looks like that XMLSecurityKey does not currently support rsa-oaep encryption method. Given that RSA-1.5 is no longer considered secure, and RSA-OAEP-MGF1P relies on SHA-1, it would be great if sup…
-
I create certificate like this:
$CAPrivKey = RSA::createKey();
$CAPubKey = $CAPrivKey->getPublicKey();
$CAIssuer = new X509();
$CAIssuer->setPrivateKey($CAPrivKey);
$CASubject = new X509;
…
-
From https://www.openssl.org/docs/man1.1.0/man3/RSA_public_encrypt.html
> RSA_PKCS1_OAEP_PADDING
>
> EME-OAEP as defined in PKCS #1 v2.0 with SHA-1, MGF1 and an empty encoding parameter. This …
-
I am trying to decrypt a message in node.js using node-forge but it's throwing "Invalid RSAES-OAEP padding."
Code snippet:
```js
var forge = require('node-forge');
var rsa = forge.pki.rsa;
va…
-
**Symptom:**
My java application throws exception when unwrapping PKCS7 CMS envelope that encrypted with RSAES-OAEP. The PKCS7 CMS envelope is created using Microsoft .NET.
RFC Spec and RSAES-…
-
hi cant open scarface the world is yours, try it on wine 9.15 wow64. here is the terminal bug:
```
Dynarec will try to make bigger blocks even on non-elf memory
Dynarec will continue block for …
-
The following mechanisms are not mentioned and may (?) be missing.
Stream ciphers:
* Salsa20
* XSalsa20 (useful to mention explicitly?) (used in [libsodium](https://doc.libsodium.org/secret-key…
-
current version 5.0.1 do not support OAEP SHA256, can help to build new version for that ?
thanks
-
``` python
from Crypto.Cipher import PKCS1_OAEP as oaep
from Crypto.PublicKey import RSA
key = RSA.generate(2048)
pkcs = oaep.new(key)
pkcs.can_decrypt()
```
```
-------------------------------------…