optimus 0.2.1

ID hashing and Obfuscation using Knuth's Algorithm
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Error, Debug)]
pub enum OptimusError {
    #[error("Argument Provided Not Prime")]
    NotPrime,
    #[error("Cannoot calculate Mod Inverse for Argument Provided")]
    NoModInverse,
}