https://github.com/deeper-x/cfiscale
Genera e controlla il codice fiscale
https://github.com/deeper-x/cfiscale
codicefiscale golang
Last synced: 3 months ago
JSON representation
Genera e controlla il codice fiscale
- Host: GitHub
- URL: https://github.com/deeper-x/cfiscale
- Owner: deeper-x
- License: mit
- Created: 2020-06-19T21:27:45.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-25T16:08:40.000Z (almost 3 years ago)
- Last Synced: 2025-02-01T08:47:25.264Z (5 months ago)
- Topics: codicefiscale, golang
- Language: Go
- Homepage:
- Size: 745 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Codice Fiscale
Sistema di generazione codice fiscale, a partire da:
```
name string
surname string
birthCity string
birthDate string
gender string
```Metodi esposti:
#### Genera codice fiscale
```
p := NewPerson("Mario", "Rossi", "Roma", "29/09/1936", "M")
fc, err := p.DoRequest()
...
```#### Controlla codice fiscale
```
fc := "BRLSLV36P29F205X"
ok, err := p.Verify(fc)
...
```