cryptfs: Remove unused variable
We'll be allowing modifyable key sizes in the near future, and want to remove this variable to reduce confusion with this change. Bug: 73079191 Test: None Change-Id: I7047bb375553d8c46ff0724add697a5105ebc68c
This commit is contained in:
parent
3e02df8d3c
commit
026072f81b
1 changed files with 0 additions and 1 deletions
|
@ -1056,7 +1056,6 @@ static int scrypt(const char *passwd, const unsigned char *salt,
|
|||
int p = 1 << ftr->p_factor;
|
||||
|
||||
/* Turn the password into a key and IV that can decrypt the master key */
|
||||
unsigned int keysize;
|
||||
crypto_scrypt((const uint8_t*)passwd, strlen(passwd),
|
||||
salt, SALT_LEN, N, r, p, ikey,
|
||||
KEY_LEN_BYTES + IV_LEN_BYTES);
|
||||
|
|
Loading…
Reference in a new issue