python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Unable to verify a public cert's modules with openssl (Unable to verify rsa public key came from a private key)
I created a private and public key pair like this:
openssl genrsa -out priv.pem 2048
openssl rsa -in priv.pem -pubout -out pub.pem
I want to now verify the public key came from the private key though...
Dave
Votes: 0
Answers: 2
Create JWT token using PEM certificate in node
I need to convert a Java code to node.js.
The Java code reads a p12 file, retrieves a public key from it and creates a JWT token using the following code —
import java.security.PublicKey;
import java....
LOhivi
Votes: 0
Answers: 1
Add a public key to a jks keystore
I have been given a public xml key in the following format:
<RSAKeyValue>
<Modulus>MODULUS_VALUE</Modulus>
<Exponent>EXPONENT_VALUE</Exponent>
</RSAKeyValue>
W...
nikolakoco
Votes: 0
Answers: 0
How to encrypt using a RSA certificate in nodejs?
I am going through some docs where I am required to encrypt some data using a certificate. The docs say
Encrypt the array with the M-Pesa public key certificate. Use the RSA
algorithm, and use PKCS #...

YulePale
Votes: 0
Answers: 1