15 releases (8 breaking)
Uses old Rust 2015
0.9.0 | Dec 21, 2024 |
---|---|
0.8.2 | Sep 4, 2024 |
0.8.1 | Mar 26, 2024 |
0.8.0 | Dec 21, 2023 |
0.2.0 | Apr 27, 2016 |
#1739 in Command line utilities
266 downloads per month
53KB
1.5K
SLoC
Personal identity code validator and generator in Rust
Simple crate for validating and generating Finnish Personal Identity Code (henkilötunnus, hetu).
Supports the 1.1.2023 format.
Works with rust 1.8 stable.
Usage
Add this to your Cargo.toml
[dependencies.hetu]
git = "https://github.com/jelovirt/hetu.git"
To validate a personal identity code:
extern crate hetu;
use hetu::Ssn;
pub fn main() {
if Ssn::try_from("121212-121D").is_ok() {
println!("Valid")
} else {
println!("Invalid")
}
}
To generate a personal identity code:
extern crate hetu;
use hetu::Ssn;
pub fn main() {
println!("{}", Ssn::generate());
}
To generate a personal identity code by pattern:
extern crate hetu;
use hetu::Ssn;
use hetu::SsnPattern;
pub fn main() {
let pattern = SsnPattern::parse("111111-111?").unwrap();
println!("{}", Ssn::generate_by_pattern(pattern).unwrap());
}
CLI
Command line tool hetu
can be used to either validate or randomly generate
personal identity codes.
To validate a personal identity code:
$ hetu 121212-121D
$ echo 121212-121D | hetu -
$ hetu 121212-121C
Error: Invalid checksum: expected D
121212-121C
^
To generate a personal identity code:
$ hetu
121212-121D
To generate a personal identity code by pattern that can contain wildcards:
$ hetu -p "121212-121?"
121212-121D
$ hetu -p "121212-???D"
121212-028D
$ hetu -p "??????-???D"
241151-028D
Related projects
Dependencies
~415–640KB