crypto_verify_16

Secrets are always compared in constant time using sodium_memcmp() or crypto_verify_(16|32|64)() @returns true, if the content of array x matches the content of array y. Otherwise, it returns false.

  1. alias crypto_verify_16 = deimos.sodium.crypto_verify_16.crypto_verify_16
  2. bool crypto_verify_16(ubyte[crypto_verify_16_BYTES] x, ubyte[crypto_verify_16_BYTES] y)
    pragma(inline, true) @nogc nothrow pure @trusted
    bool
    crypto_verify_16
    (
    const ubyte[crypto_verify_16_BYTES] x
    ,
    const ubyte[crypto_verify_16_BYTES] y
    )

Meta