PCSC.Iso7816
6.1.2
See the version list below for details.
dotnet add package PCSC.Iso7816 --version 6.1.2
NuGet\Install-Package PCSC.Iso7816 -Version 6.1.2
<PackageReference Include="PCSC.Iso7816" Version="6.1.2" />
paket add PCSC.Iso7816 --version 6.1.2
#r "nuget: PCSC.Iso7816, 6.1.2"
// Install PCSC.Iso7816 as a Cake Addin #addin nuget:?package=PCSC.Iso7816&version=6.1.2 // Install PCSC.Iso7816 as a Cake Tool #tool nuget:?package=PCSC.Iso7816&version=6.1.2
PC/SC wrapper classes for .NET
Introduction
The pcsc-sharp library is wrapper that provides access to the Personal Computer/Smart Card Resource Manager using the system's native PC/SC API. It implements partial ISO7816 support and is written to run on both Windows and Unix (.Net Core or Mono using PCSC Lite).
pcsc-sharp is not a fully featured library for accessing vendor specific protocols. You must implement those protocols / applications yourself. For example: You can use pcsc-sharp to access NXP's Mirfare RFID chips, but pcsc-sharp does not provide any APDUs to request KEYs, authorize, etc.
pcsc-sharp does not contain any device drivers. A PC/SC compliant reader + driver is mandatory.
The GitHub issue tracker is not a support forum. Please contact your vendor for reader or card specific questions.
You can find PC/SC specific documentation here:
- Windows: Smart Card Resource Manager API
- Linux: PCSC lite project
Supported Operating systems
Windows (winscard.dll)
- Windows 10 64-bit Professional
- Windows 10 32-bit Professional
- Windows 7 64-bit
- Windows 7 32-bit
Linux (PC/SC lite)
- Ubuntu Linux 64-bit
- Ubuntu Linux 32-bit
MacOS X
Raspberry Pi / Linux ARM
- linux-arm
Quick start
Establish the resource manager context
Each operation requires a valid context. See SCardEstablishContext for more information.
var contextFactory = ContextFactory.Instance;
using (var context = contextFactory.Establish(SCardScope.System)) {
// your code
}
Basic rules / best practices:
- One context per smartcard / reader.
- One context per
SCardMonitor
. - The context must be disposed of after usage to free system resources.
- The context must not be disposed of if your application still accesses the smartcard / reader.
List all connected smartcard readers
See SCardListReaders.
var contextFactory = ContextFactory.Instance;
using (var context = contextFactory.Establish(SCardScope.System)) {
Console.WriteLine("Currently connected readers: ");
var readerNames = context.GetReaders();
foreach (var readerName in readerNames) {
Console.WriteLine("\t" + readerName);
}
}
Send ISO7816 APDUs
var contextFactory = ContextFactory.Instance;
using (var ctx = contextFactory.Establish(SCardScope.System)) {
using (var isoReader = new IsoReader(ctx, "ACME Smartcard reader", SCardShareMode.Shared, SCardProtocol.Any, false)) {
var apdu = new CommandApdu(IsoCase.Case2Short, isoReader.ActiveProtocol) {
CLA = 0x00, // Class
Instruction = InstructionCode.GetChallenge,
P1 = 0x00, // Parameter 1
P2 = 0x00, // Parameter 2
Le = 0x08 // Expected length of the returned data
};
var response = isoReader.Transmit(apdu);
Console.WriteLine("SW1 SW2 = {0:X2} {1:X2}", response.SW1, response.SW2);
// ..
}
}
Read reader attributes
using (var ctx = ContextFactory.Instance.Establish(SCardScope.System)) {
using (var reader = ctx.ConnectReader("OMNIKEY CardMan 5x21 0", SCardShareMode.Shared, SCardProtocol.Any)) {
var cardAtr = reader.GetAttrib(SCardAttribute.AtrString);
Console.WriteLine("ATR: {0}", BitConverter.ToString(cardAtr));
Console.ReadKey();
}
}
Monitor reader events
var monitorFactory = MonitorFactory.Instance;
var monitor = monitorFactory.Create(SCardScope.System);
// connect events here..
monitor.StatusChanged += (sender, args) =>
Console.WriteLine($"New state: {args.NewState}");
monitor.Start("OMNIKEY CardMan 5x21-CL 0");
Console.ReadKey(); // Press any key to exit
monitor.Cancel();
monitor.Dispose();
More example code
Checkout the Examples directory.
Build from source
Required software
Build tools
Fake, Please run:
dotnet tool install fake-cli -g
to install
fake
as global tool. On Linux you may have to add the following lines into your .profile or .bashrc file:if [ -d "$HOME/.dotnet/tools" ] ; then PATH="$HOME/.dotnet/tools:$PATH" fi
pcsc-sharp uses the FAKE DSL for build tasks. To build the solution, run fake run build.fsx
.
Build instructions for Raspberry Pi
Compile with
dotnet publish -r linux-arm
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- PCSC (>= 6.1.2)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on PCSC.Iso7816:
Package | Downloads |
---|---|
ThaiNationalIDCard.NET
Thai National ID Card Reader for .NET |
|
BTCPayServer.NTag424.PCSC
A library to communicate with NTag 424 chips and assist BoltCard creation |
|
PcscNfc
Package Description |
|
FrApp42.ACR122U
Lib to read data with an ACR122U NFC card reader |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on PCSC.Iso7816:
Repository | Stars |
---|---|
chakphanu/ThaiNationalIDCard
ThaiNational IDCard(Smartcard) helper
|
Version | Downloads | Last updated |
---|---|---|
7.0.0 | 3,569 | 8/23/2024 |
6.2.0 | 41,956 | 12/30/2023 |
6.1.3 | 46,054 | 12/19/2022 |
6.1.2 | 1,529 | 12/1/2022 |
6.1.1 | 824 | 12/1/2022 |
6.1.0 | 745 | 11/30/2022 |
6.0.0 | 30,064 | 3/9/2022 |
5.1.0 | 16,029 | 12/6/2021 |
5.0.0 | 79,103 | 12/7/2019 |
4.2.0 | 16,610 | 7/3/2019 |
4.1.1 | 3,374 | 5/26/2019 |
4.1.0 | 1,054 | 5/26/2019 |
4.0.3 | 2,740 | 2/18/2019 |
4.0.2 | 3,209 | 2/4/2019 |
4.0.1 | 4,557 | 9/24/2018 |
4.0.0 | 70,816 | 2/25/2018 |