Top "Rsa" questions

RSA is a common public key algorithm, which can be used for encryption and signature.

How to extract the RSA public key from a .cer and store it in a .pem using OpenSSL?

I have the requirement to extract the public key (RSA) from a *.cer file. I wish to extract the key …

encryption openssl rsa pem cer
How to store/retrieve RSA public/private key

I want to use RSA public key encryption. What is the best way to store or retrieve private and public …

c# .net cryptography rsa
How does the RSA private key passphrase work under the hood?

RSA private keys may be assigned a "passphrase" which - as I understand it - is intended to provide some …

security encryption rsa
How to check a public RSA key file

Inside a shell script I want verify public RSA file. All I want to do is that find a way …

shell openssl rsa public-key pem
Signing and verifying signatures with RSA C#

I recently posted about issues with encrypting large data with RSA, I am finally done with that and now I …

c# encoding rsa signing
how to use RSA to encrypt files (huge data) in C#

I'm new to encryption. I need to implement asymmetric encryption algorithm, which i think it uses private/public key. I …

c# cryptography rsa encryption-asymmetric 3des
Algid parse error, not a sequence

When trying to read a RSA private key from a file using the method public PrivateKey getPrivateKey() throws NoSuchAlgorithmException, InvalidKeySpecException, …

java security rsa
What are the differences between .pem, .cer and .der?

What are the differences between .pem, .cer and .der? As far as I know, .cer contains public key. Are there …

encryption cryptography rsa
SHA1 VS RSA: what's the difference between them?

What are the differences between SHA1 and RSA? Are they just different algorithms or are they fundamentally (i.e. used …

encryption cryptography rsa sha
Encrypting/Decrypting large files (.NET)

I have to encrypt, store and then later decrypt large files. What is the best way of doing that? I …

c# .net encryption cryptography rsa