Lines Matching refs:secret
2 Hash: xxHash secret
15 //$secret = random_bytes(256);
16 $secret = str_repeat('a', 256);
19 $ctx = hash_init($a, options: ["seed" => 24, "secret" => $secret]);
25 $ctx = hash_init($a, options: ["secret" => new StringableThrowingClass()]);
31 $ctx = hash_init($a, options: ["secret" => str_repeat('a', 17)]);
36 $ctx = hash_init($a, options: ["secret" => $secret]);
43 …sh($a, "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", options: ["secret" => $secret]);
50 string(67) "xxh3: Only one of seed or secret is to be passed for initialization"
52 Deprecated: hash_init(): Passing a secret of a type other than string is deprecated because it impl…
56 string(69) "xxh128: Only one of seed or secret is to be passed for initialization"
58 Deprecated: hash_init(): Passing a secret of a type other than string is deprecated because it impl…