Home | History | Annotate | Download | only in visitedlink

Lines Matching full:salt

54 // Fills the given salt structure with some quasi-random values
57 void GenerateSalt(uint8 salt[LINK_SALT_LENGTH]) {
58 DCHECK_EQ(LINK_SALT_LENGTH, 8) << "This code assumes the length of the salt";
60 memcpy(salt, &randval, 8);
170 const uint8 salt[LINK_SALT_LENGTH]);
197 // Salt for this new table.
577 // The salt must be generated before the table so that it can be copied to
604 uint8 salt[LINK_SALT_LENGTH]) {
644 // Read the salt.
645 memcpy(salt, &header[kFileHeaderSaltOffset], LINK_SALT_LENGTH);
666 // Initializes the shared memory structure. The salt should already be filled
692 memcpy(header->salt, salt_, LINK_SALT_LENGTH);
843 // TODO(brettw) make sure we have reasonable salt!
964 const uint8 salt[LINK_SALT_LENGTH])
968 memcpy(salt_, salt, sizeof(salt));