Algorithm
Fields of this type
Fields
- polynomial:W
- initial:W
- reflect_input:bool
- reflect_output:bool
- xor_output:W
Source
Implementation
pub fn Algorithm(comptime W: type) type {
return struct {
polynomial: W,
initial: W,
reflect_input: bool,
reflect_output: bool,
xor_output: W,
};
}