Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 428 Bytes

File metadata and controls

15 lines (12 loc) · 428 Bytes

LuhnNet

.NET Core Nuget

Usage

Check if a number is valid

  var isValid = Luhn.IsValid("5555666677778884");

Calculate the check digit

  var checkDigit = Luhn.CalculateCheckDigit("555566667777888");