Giter VIP home page Giter VIP logo

luhndotnet's Introduction

LuhnDotNet

An C# implementation of the Luhn algorithm.

The Luhn algorithm is a checksum formula used to validate identification numbers like credit card numbers. It works by doubling every second digit from the right, summing all the digits, and checking if the total is a multiple of 10. It's widely used and is specified in ISO/IEC 7812-1.

Build & Test Status Of Default Branch

Status Solution Project Format .NET Version
Build status LuhnDotNet.sln SDK Standard 2.0
Standard 2.1
FX 4.6.2
FX 4.7
FX 4.7.1
FX 4.7.2
FX 4.8
.NET 6
.NET 7
.NET 8

NuGet

Supported Target Frameworks

Build And Test Status NuGet Version Git Tag Target Frameworks
LuhnDotNet NuGet NuGet Version 1.1.0 Tag .NET 6
.NET 7
.NET 8
Standard 2.0
Standard 2.1
FX 4.6.2
FX 4.7
FX 4.7.1
FX 4.7.2
FX 4.8

Install LuhnDotNet package

  1. Open a console and switch to the directory, containing your project file.

  2. Use the following command to install version 1.1.0 of the LuhnDotNet package:

    dotnet add package LuhnDotNet -v 1.1.0 -f <FRAMEWORK>
    
  3. After the completion of the command, look at the project file to make sure that the package is successfully installed.

    You can open the .csproj file to see the added package reference:

    <ItemGroup>
      <PackageReference Include="LuhnDotNet" Version="1.1.0" />
    </ItemGroup>

Remove LuhnDotNet package

  1. Open a console and switch to the directory, containing your project file.

  2. Use the following command to remove the LuhnDotNet package:

    dotnet remove package LuhnDotNet
    
  3. After the completion of the command, look at the project file to make sure that the package is successfuly removed.

    You can open the .csproj file to check the deleted package reference.

Usage

Compute the Luhn check digit

using System;
using System.Collections.Generic;
using LuhnDotNet;

namespace Example1
{
  public class Program
  {
    public static void Main(string[] args)
    {
      var checkDigit = Luhn.ComputeLuhnCheckDigit("37828224631000");
      //// Must be 5
      Console.WriteLine(checkDigit);
    }
  }
}

Compute the Luhn number

using System;
using System.Collections.Generic;
using LuhnDotNet;

namespace Example2
{
  public class Program
  {
    public static void Main(string[] args)
    {
      var luhnNumber = Luhn.ComputeLuhnNumber("37828224631000");
      //// Must be 378282246310005
      Console.WriteLine(luhnNumber);
    }
  }
}

Validate Luhn number

using System;
using System.Collections.Generic;
using LuhnDotNet;

namespace Example3
{
  public class Program
  {
    public static void Main(string[] args)
    {
      var isValid = Luhn.IsValid("378282246310005");
      //// Must be 'true'
      Console.WriteLine(isValid);
    }
  }
}

Validate number and corresponding Luhn check digit

using System;
using System.Collections.Generic;
using LuhnDotNet;

namespace Example4
{
  public class Program
  {
    public static void Main(string[] args)
    {
      var isValid = Luhn.IsValid("37828224631000", 5);
      //// Must be 'true'
      Console.WriteLine(isValid);
    }
  }
}

Validate ISIN with LuhnDotNet and ConvertAlphaNumericToNumeric

The LuhnDotNet library can be used in combination with the ConvertAlphaNumericToNumeric method to validate an International Securities Identification Number (ISIN). An ISIN uniquely identifies a security, such as stocks, bonds or derivatives. It is a 12-character alphanumeric code.

The ConvertAlphaNumericToNumeric method is used to convert the alphanumeric ISIN to a numeric string, where each letter in the input string is replaced by its decimal ASCII value minus 55. This numeric string can then be validated using the Luhn.IsValid method.

Here is an example of how to use these methods to validate an ISIN:

using System;
using LuhnDotNet;

namespace Example5
{
  public class Program
  {
    public static void Main(string[] args)
    {
      string isin = "US0378331005";
      bool isValid = Luhn.IsValid(isin.ConvertAlphaNumericToNumeric());

      Console.WriteLine($"The ISIN {isin} is valid: {isValid}");
    }
  }
}

Compute ISIN Check Digit with LuhnDotNet and ConvertAlphaNumericToNumeric

The LuhnDotNet library provides the ComputeLuhnCheckDigit method which can be used to compute the check digit of a numeric string according to the Luhn algorithm. When dealing with an International Securities Identification Number (ISIN), which is a 12-character alphanumeric code, we first need to convert the alphanumeric ISIN to a numeric string. This can be achieved using the ConvertAlphaNumericToNumeric method.

Here is an example of how to compute the check digit of an ISIN:

using System;
using LuhnDotNet;

namespace Example6
{
  public class Program
  {
    public static void Main(string[] args)
    {
      string isinWithoutCheckDigit = "US037833100";
      byte checkDigit = Luhn.ComputeLuhnCheckDigit(isinWithoutCheckDigit.ConvertAlphaNumericToNumeric());

      Console.WriteLine($"The check digit for ISIN {isinWithoutCheckDigit} is: {checkDigit}");
    }
  }
}

Compute credit card number with LuhnDotNet

The LuhnDotNet library can be used to compute the check digit of a credit card number. The check digit is the last digit of the credit card number, which is used to validate the number according to the Luhn algorithm.

using System;
using LuhnDotNet;

namespace Example7
{
  public class Program
  {
    public static void Main(string[] args)
    {
      string creditCardNumberWithoutCheckDigit = "4417 1234 5678 911".Replace(" ", "");
      byte checkDigit = Luhn.ComputeLuhnCheckDigit(creditCardNumberWithoutCheckDigit);

      Console.WriteLine($"The check digit for credit card number {creditCardNumberWithoutCheckDigit} is: {checkDigit}");
    }
  }
}

Validate credit card number with LuhnDotNet

The LuhnDotNet library can be used to validate a credit card number according to the Luhn algorithm. The IsValid method returns true if the credit card number is valid, and false otherwise.

using System;
using LuhnDotNet;

namespace Example8
{
  public class Program
  {
    public static void Main(string[] args)
    {
      string creditCardNumber = "4417 1234 5678 9113".Replace(" ", "");
      bool isValid = Luhn.IsValid(creditCardNumber);

      Console.WriteLine($"The credit card number {creditCardNumber} is valid: {isValid}");
    }
  }
}

CLI building instructions

For the following instructions, please make sure that you are connected to the internet. If necessary, NuGet will try to restore the xUnit packages.

Using dotnet to build for .NET 6, .NET 7, .NET 8 and .NET FX 4.x

Use one of the following solutions with dotnet to build LuhnDotNet:

The syntax is:

dotnet {restore|build|test} -c {Debug|Release} LuhnDotNet.sln

Restore NuGet packages

dotnet restore LuhnDotNet.sln

The instructions below are examples, which operate on the LuhnDotNet.sln.

Build Debug configuration

dotnet build -c Debug --no-restore LuhnDotNet.sln

Build Release configuration

dotnet build -c Release --no-restore LuhnDotNet.sln

Test Debug configuration

dotnet test -c Debug --no-restore --no-build LuhnDotNet.sln

Test Release configuration

dotnet test -c Release --no-restore --no-build LuhnDotNet.sln

luhndotnet's People

Contributors

dependabot[bot] avatar shinji-san avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

fredatgithub

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.