Mark a value as sensitive or secret, helping to detect potential side-channel vulnerabilities.
When Valgrind is enabled, this function allows for the detection of conditional jumps or lookups that depend on secrets or secret-derived data. Violations are reported by Valgrind as operations relying on uninitialized values.
If Valgrind is disabled, it has no effect.
Use this function to verify that cryptographic operations perform constant-time arithmetic on sensitive data, ensuring the confidentiality of secrets and preventing information leakage through side channels.
pub fn classify(ptr: anytype) void
pub fn classify(ptr: anytype) void {
markSecret(ptr, .classify);
}