Browse Source

Merge pull request #670 from libtom/fix-669

Fix type in PEM+SSH decoder
Steffen Jaeckel 1 year ago
parent
commit
29af8922b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/misc/pem/pem_ssh.c

+ 1 - 1
src/misc/pem/pem_ssh.c

@@ -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;
 };