Merge pull request #670 from libtom/fix-669

Fix type in PEM+SSH decoder
This commit is contained in:
Steffen Jaeckel 2024-10-07 12:42:12 +02:00 committed by GitHub
commit 29af8922b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,7 +53,7 @@ struct kdf_options {
const char *name;
const struct blockcipher_info *cipher;
unsigned char salt[64];
ulong32 saltlen;
unsigned long saltlen;
ulong32 num_rounds;
struct password pw;
};