default_ror.hHeader
Defines the ror (Rotate Right) class template and its specializations for various data types. More...
Detailed Description
The ror
class template provides functionality to perform bitwise rotate right (ROR) operations on values of type T
. Bitwise rotation is a fundamental operation in cryptographic algorithms and data obfuscation techniques. The ror
class supports both compile-time and runtime ROR operations, allowing for flexible and efficient rotation of bits within a value. This file includes specializations of the ror
class for specific types, such as char
, int8_t
, int16_t
, int32_t
, and int64_t
, ensuring that the functionality is available for a variety of data types.