HomeSort by: relevance | last modified time | path
    Searched refs:SALT (Results 1 - 5 of 5) sorted by relevancy

  /src/external/mpl/bind/dist/bin/tests/system/nsec3-answer/ns1/
sign.sh 30 SALT="$(printf "%04x" "$(($(date +%s) / 3600 % 65536))")"
31 echo_ic "NSEC3 salt for this hour: $SALT"
32 "$SIGNER" -3 "$SALT" -o "$zone" "$zonefile" 2>&1 >"$zonefile.sign.log"
  /src/external/mpl/bind/dist/tests/dns/
nsec3param_test.c 44 #define SALT "FEDCBA98"
54 const char *salt; member in struct:__anon9263
65 decode_salt(const char *string, unsigned char *salt, size_t saltlen) {
69 isc_buffer_init(&buf, salt, saltlen);
81 if (from.salt == NULL) {
82 to->salt = NULL;
83 } else if (strcmp(from.salt, "-") == 0) {
84 to->salt = (unsigned char *)"-";
86 decode_salt(from.salt, saltbuf, saltlen);
87 to->salt = saltbuf
155 unsigned char salt[SALTLEN]; local
    [all...]
  /src/sbin/cgdconfig/
cgdparse.y 70 %token <token> KEYGEN SALT ITERATIONS MEMORY PARALLELISM VERSION KEY CMD SHARED
101 kgvar: SALT bits EOL { $$ = keygen_salt($2); }
118 | KEYGEN | SALT | ITERATIONS
cgdlex.l 99 salt { RETTOKEN(SALT); }
  /src/lib/libcrypt/
crypt.c 145 * "salt" are also converted to this 8*(6+2) format. The SPE table size is
215 * The Bell Labs "salt" (Bob Baldwin):
218 * Specifically, if bit i (1 <= i <= 24) of the salt is set then bits i and
219 * i+24 of the result are swapped. The salt is thus a 24 bit number, with
220 * 16777216 possible values. (The original salt was 12 bits and could not
223 * It is possible, but ugly, to warp the SPE table to account for the salt
555 int32_t salt; local
648 salt = 0;
654 salt = (salt << 6) | value
    [all...]

Completed in 29 milliseconds