Crate gf2_192

Crate gf2_192 

Source
Expand description

Implementation of finite field arithmetic and polynomial interpolation/evaluation in Galois field GF(2^192).

Modules§

gf2_192
By Leonid Reyzin This is free and unencumbered software released into the public domain.
gf2_192poly
By Leonid Reyzin This is free and unencumbered software released into the public domain.

Enums§

Gf2_192Error
General error type for the gf2_192 crate

Functions§

lrs_i8
Logical right shift of i8 values which is equivalent to the >>> operator in java/scala. Need this because rust does ‘arithmetical shift right’ on signed integers. See:
lrs_i64
Logical right shift of i64 values which is equivalent to the >>> operator in java/scala. Need this because rust does ‘arithmetical shift right’ on signed integers. See: