mirror of
https://github.com/libtom/libtomcrypt
synced 2026-08-25 20:26:07 -04:00
Fix type in PEM+SSH decoder
9b6bf32f88 changed the type of the length
argument of a `LTC_SSHDATA_STRING` from `ulong32` to `unsigned long` and
usage of this wrong type survived multiple re-factors and code moves.
This fixes #669
Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>
This commit is contained in:
parent
24fc92b857
commit
3df7a96258
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue