Questions tagged [symmetric]
Symmetric cryptosystems assume two communicating entities share a pre-established secret key.
914 questions
1
vote
1
answer
272
views
Request for review of cryptographic process in a ciphering program
I have developed a program that ciphers data. Target audiences are groups of non-tech savvy activists, not able or not willing to use programs such as Kleopatra or Veracrypt, that need to protect ...
2
votes
1
answer
232
views
Safe to transmit chacha20 nonce counter in plaintext when using DH?
In a system where 2 sides have exchanged each others' public keys (in encrypted form by using a very short-lived ephemeral private/public key pair generated just for that purpose) and computed a ...
3
votes
3
answers
426
views
Best way to transfer partially known data using AES-CBC
Using the AES algorithm in CBC mode, my goal is to transfer some encrypted JSON data with known keys (that means that roughly 40% to 60% of the plaintext data might be known by the attacker including ...
1
vote
0
answers
73
views
Simultaneous access to both encryption and decryption oracles for a symmetric encryption algorithm [duplicate]
I am investigating the security implications when an attacker has simultaneous access to both encryption and decryption oracles for a symmetric encryption algorithm.
Specifically, by "...
4
votes
2
answers
123
views
Key recovery security (KR-CPA) from IND-CPA for all message space sizes?
Intuitively, IND-CPA security should imply key recovery security (KR-CPA) for a symmetric encryption scheme $\Sigma$. Indeed, showing this is often given as a homework in various textbooks, such as ...
5
votes
2
answers
742
views
Can a CRQC crack ECC without a public key?
Using a sealed_box type construct (eg. tool like age[1]) with non-hybrid ECC.
Payload is encrypted to some recipient ECC public key.
In this scenario, the recipient public key remains secret.
Having ...
1
vote
1
answer
159
views
Deterministic encryption of searchable data in database
I maintain messaging system which uses mysql RDBMS and have table with messages:
...
1
vote
1
answer
269
views
Considerations and Trade-offs When Replacing AES-GCM-128 with Ascon-AEAD128 in High-Performance Cluster Encryption
NIST SP 800-232 standardizes the AEAD scheme Ascon-AEAD128, whose primary target is to provide efficient cryptographic solutions for resource-constrained devices. However, in some high-performance ...
1
vote
1
answer
138
views
PRGs and non linear FSRs
My understanding is that we can formally prove that PRGs can generate a polynomial length pseudorandom expansion of the seed. But don't the FSRs with non linear feedback like Trivium claim to generate ...
2
votes
2
answers
240
views
Application of True Randomness generators in Cryptography
What is the exact application or True Randomness in Cryptography, either symmetric or public key?
It is well known that the symmetric keys of encryption algorithms are supposed to be chosen randomly ...
1
vote
0
answers
84
views
Why are symmetric variants predominantly not employed in RLWE-based homomorphic encryption schemes?
For RLWE-based FHE scheme, we always use asymmetric encryption. Why are symmetric variants predominantly not employed in RLWE-based homomorphic encryption schemes?
0
votes
2
answers
250
views
Is an a priori naturalistic conlang undecipherable?
Is a constructed language that has its own unique grammar (not merely copycatting English or Spanish or what have you) and its own unique vocabulary (not merely borrowing from one or several existing ...
1
vote
1
answer
148
views
Why same input and output mask in sm4 gives better approximation
SM4 is an unbalanced Feistel structure that takes a 128-bit plaintext and a 128-bit key as input and produces a 128-bit ciphertext as output. It consists of 32 rounds. In each round, only 32 bits are ...
1
vote
1
answer
184
views
Next Steps After RNG Testing for a Custom Keystream Generator Based on ChaCha20/Salsa20
this is my first question on the Cryptography Stack Exchange.
I’ve been developing a custom keystream generator and stream cipher inspired by ChaCha20 and Salsa20. As part of the evaluation process, I’...
2
votes
1
answer
210
views
Are small virtual LUKS volumes any less secure than GNUPG files, for cold storage on a non-encrypted medium?
I have been trying to find a more modern solution for my encrypted files on cold storage. I have been using Gnupg for symmetric encryption but, as parallel computing with GPUs become ubiquitous, its ...