Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

declassify

Mark a value as non-sensitive or public, indicating it's safe from side-channel attacks.

Signals that a value has been securely processed and is no longer confidential, allowing for relaxed handling without fear of information leakage through conditional jumps or lookups.

timing_safe.declassify
pub fn declassify(ptr: anytype) void

File

lib/std/crypto/timing_safe.zig:178

Code

pub fn declassify(ptr: anytype) void {
    markSecret(ptr, .declassify);
}