-
ref: https://openjdk.org/jeps/478
Summary
Introduce an API for Key Derivation Functions (KDFs), which are cryptographic algorithms for deriving additional keys from a secret key and other data. This…
-
`pbkdf2` is getting rather old. While it's still acceptable, society as a whole has put quite a lot of work into fast hardware for computing SHA-256 in the past decade. For this reason it is no longer…
-
One of my workmates made an XML encryption / decryption process with certificates and CMS in Java using latest Bouncy Castle version.
Our customers want to implement those methods in .NET, so I'm try…
-
### What is the problem this feature will solve?
The crypto library currently lacks a generic key derivation function similar to [OpenSSL's `EVP_KDF` methods](https://wiki.openssl.org/index.php/EVP_K…
-
In order to implement XMSS, we need [the WOTS+ primitive signature scheme](https://datatracker.ietf.org/doc/html/rfc8391#section-3.1).
- [x] Define a functor with the parameters (3.1.1)
- [x] Defi…
-
## Introduction
[I have an existing issue [here](https://github.com/w3c/webcrypto/issues/265), but I'm hoping to get more eyes on it.]
The `SubtleCrypto.deriveKey` API exposes one password-base…
-
As a product owner I want the software to use as pair of username and password to create a salted (username) key (from the password) in a stable and safe way.
What do we need to take care about?
-
An important topic, similar to padding (#36).
dbosk updated
2 years ago
-
Hi, from glancing at main.c it seems you're using crypto_hash_sha256 as the key derivation function in case of password entry. Any reason you're not using scrypt/pbkdf2/bcrypt? Thanks for sharing yo…
-
I measured that my tablet is 20 times slower than my desktop when computing a key derivation function. I've done this by creating a LUKS container with `cryptsetup --type luks1 --iter-time 10000 --has…