Detects and validates credit card numbers (type of card, number length and Luhn checksum).
Important notice: this is a complete rework of @rprotasov initial work, supporting more card providers and containing important validation fixes.
Debit cards:
Credit cards:
In your Cargo.toml
:
toml
[dependencies]
card-validate = "1.0"
```rust extern crate card_validate;
use card_validate::Validate;
let cardnumber = "5236313877109142"; let result = Validate::from(cardnumber).expect("invalid card number");
asserteq!(result.cardtype.name(), "mastercard".tostring()); asserteq!(result.valid, true); asserteq!(result.lengthvalid, true); asserteq!(result.luhnvalid, true); ```