Skip to main content

Questions tagged [aes]

The Advanced Encryption Standard (AES) is a symmetric-key encryption standard adopted by the U.S. government. The standard comprises three block ciphers, AES-128, AES-192 and AES-256, adopted from a larger collection originally published as Rijndael.

1 vote
1 answer
77 views

I've written an parallelized implementation of the AES-CTR cipher using OpenSSL. Since you can precompute any block of keystream data based on the counter it's actually embarrassingly parallel which ...
Chris Rapier's user avatar
1 vote
1 answer
138 views

Normally I would talk a about a key/value store, but key is a bit confusing in the encryption context so lets talk about an encrypted ID/value store where IDs are used to look up data. The IDs shall ...
Harald's user avatar
  • 133
3 votes
1 answer
4k views

I’m in the process of developing a native app and am currently trying to come up with a workflow to secure the communication between my app and the server. I’ve done a lot of research and have not ...
Rhubarb's user avatar
  • 41
2 votes
1 answer
668 views

When implementing JSON Web Encryption (JWE), I understand the reasons why you might choose A256KW over DIR. But, now I notice there is also A256GCMKW as an optional part of the JWE standard (see ...
Simon Kissane's user avatar
2 votes
1 answer
1k views

Consider the following use case: User can choose a key. The key is used to encrypt files to be stored on a server. Some file and directory names are easily guessed from the nature of the software, ...
Harald's user avatar
  • 133
1 vote
1 answer
161 views

I am learning about how AES encryption works. I understand the overall process, but I think I've missed something. Let's say I have this text to encrypt: "vulkanski izbruh" – 16 characters (...
CBCyber's user avatar
  • 27
1 vote
1 answer
185 views

In BearSSL webpage it has been claimed that bearssl supports AES/GCM BearSSL currently implements AES/CBC, AES/GCM, AES/CCM and 3DES/CBC cipher suites. But I can not find any function in its GitHub ...
user1035648's user avatar
9 votes
1 answer
1k views

I'm currently developing a backend service where I need to encrypt sensitive data stored in a database. I'm planning to use the AES-GCM (Galois/Counter Mode) encryption algorithm for this purpose. My ...
thewildman97's user avatar
5 votes
1 answer
877 views

Starting from a known nonce, AES GCM uses a counter to sequentially generate new numbers that are the input to the encryption function. If by chance two nonces from two distinct runs of AES GCM were ...
aryzing's user avatar
  • 153
5 votes
2 answers
2k views

I'm not a security expert, so please excuse this question if it's silly, but I would really like an answer. I am using AES GCM to encrypt and would like to combine the randomly generated nonce with ...
doejoe's user avatar
  • 53
2 votes
1 answer
311 views

We are currently implementing envelope encryption for our app. That means, we need to derive a key from a user's password, which then will be used as a key encryption key(KEK) to wrap another key ...
oleg_zh's user avatar
  • 377
3 votes
1 answer
812 views

I remember about 90% of my password used for encrypting the persistent user data file system (stored as knoppix-data.aes) while setting up Knoppix a few years ago and would now like to explore the ...
sarahstern's user avatar
2 votes
2 answers
439 views

I would like to encrypt many files using symmetric encryption such as AES256, using a single memorised password. I was planning to use gpg but gpg symmetric encryption does not work with --multifile ...
ghosts_in_the_code's user avatar
0 votes
1 answer
105 views

In the QUIC spec, they've provided an example of header protection: https://datatracker.ietf.org/doc/html/rfc9001#name-sample-packet-protection They've got the following process (paraphrasing): hp = ...
whatitis's user avatar
0 votes
2 answers
320 views

Will using the AES-GCM key as AEAD associated data potentially weaken the security or bring any adverse impact? Before this question, perhaps I should ask, can an attacker extract AEAD associated data ...
blackr1234's user avatar

15 30 50 per page
1
2 3 4 5
59