⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

Module constant_time

Module constant_time 

Source
Expand description

Constant-Time Cryptographic Primitives

Side-channel resistant operations for cryptographic implementations.

§Security Considerations

  • All operations must execute in constant time to prevent timing attacks
  • No data-dependent branches or memory accesses
  • Compiler optimizations must not introduce timing variations
  • Use volatile reads/writes where necessary to prevent optimization