Skip to main content

Crate patent_hash

Crate patent_hash 

Source
Expand description

A custom hashing algorithm with complex random number generation.

This library provides a modified SHA-256-like hashing algorithm with additional processing steps including byte flipping and shifting operations.

§Examples

use patent_hash::patentmethod;

let message = "Hello, world!";
let hash = patentmethod(message);
println!("Hash: {}", hash);

Functions§

patentmethod
Main hashing function implementing the patent method.