python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Where should I store my secret key for cryptography?
I am creating an application where users can enter some text and I do not want to store that text as it is in the DB. I am going to encrypt it and then store it. However, the problem I am facing is re...
Angad_Srivastav
Votes: 0
Answers: 1
How to implement cryptosystem based on Synchronous Stream Cipher using Vue js
I have a pseudo-random number generator which is generating binary number based on a user-supplied polynomial. The method i have used to generate this is LFSR. Now, if I understand correctly, I should...
BabyYoda
Votes: 0
Answers: 1
Java: Saving a DES Key Using KeyStore
I am trying to save a DES key to a file using KeyStore for later use. Here is my code:
// Generate a DES key.
KeyGenerator kg = KeyGenerator.getInstance("DES");
SecretKey k = kg....
Nolan
Votes: 0
Answers: 1
What is python equivalent of Bouncy castle's CMSSignedDataGenerator?
How do I use python to create digital signature of string? I want to add the certificates and CRLs contained in the given CertStore to the pool that will be included in the encoded signature block (ja...
om patre
Votes: 0
Answers: 0