Add uint16_t key to Hashtable, and make Salsa20 zero its keyspace on destruction.
This commit is contained in:
parent
489e1a5b83
commit
719233617c
2 changed files with 7 additions and 1 deletions
|
@ -382,7 +382,10 @@ private:
|
|||
}
|
||||
static inline unsigned long _hc(const uint32_t i)
|
||||
{
|
||||
// In the uint32_t case we use a simple multiplier for hashing to ensure coverage
|
||||
return ((unsigned long)i * (unsigned long)0x9e3779b1);
|
||||
}
|
||||
static inline unsigned long _hc(const uint16_t i)
|
||||
{
|
||||
return ((unsigned long)i * (unsigned long)0x9e3779b1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue