Package codes-check-digits

This package contains implementations of various check digit specifications, including ISO/IEC 7064:2003 Information technology — Security techniques — Check character systems.

crates.io docs.rs

For notes on the design of the API, see the repository README.

Example

```rust use codescheckdigits::{luhn, Calculator};

let calculator = luhn::getalgorithminstance(); assert!(calculator.isvalid("US0378331005")); assert!(calculator.validate("US0378331005").isok()); assert_eq!(calculator.calculate("US037833100"), Ok(5)); ```

Features

Changes

Version 0.1.0

TODO

TBD