@@ -24,13 +24,23 @@ limitations under the License. -->
24
24
Enterprise-grade cross-platform SDK for YubiKey integration, built on .NET.
25
25
26
26
## Table of Contents
27
- - [ Quick Start] ( #quick-start )
28
- - [ Documentation] ( #documentation )
29
- - [ SDK Support] ( #sdk-support )
30
- - [ SDK Packages] ( #sdk-packages )
31
- - [ Project Structure] ( #project-structure )
32
- - [ Contributing] ( #contributing )
33
- - [ Security] ( #security )
27
+ - [ .NET YubiKey SDK] ( #net-yubikey-sdk )
28
+ - [ Table of Contents] ( #table-of-contents )
29
+ - [ Quick Start] ( #quick-start )
30
+ - [ Installation] ( #installation )
31
+ - [ Basic Usage] ( #basic-usage )
32
+ - [ Documentation] ( #documentation )
33
+ - [ SDK Support] ( #sdk-support )
34
+ - [ SDK Packages] ( #sdk-packages )
35
+ - [ Public Assemblies] ( #public-assemblies )
36
+ - [ Yubico.YubiKey] ( #yubicoyubikey )
37
+ - [ Yubico.Core] ( #yubicocore )
38
+ - [ Internal Assemblies] ( #internal-assemblies )
39
+ - [ Yubico.NativeShims] ( #yubiconativeshims )
40
+ - [ Project Structure] ( #project-structure )
41
+ - [ Contributing] ( #contributing )
42
+ - [ Building the Project] ( #building-the-project )
43
+ - [ Connect with us] ( #connect-with-us )
34
44
35
45
## Quick Start
36
46
@@ -44,7 +54,7 @@ dotnet add package Yubico.YubiKey
44
54
using Yubico .YubiKey ;
45
55
46
56
// Chooses the first YubiKey found on the computer.
47
- IYubiKeyDevice ? SampleChooseYubiKey ()
57
+ IYubiKeyDevice ? GetFirstYubiKey ()
48
58
{
49
59
IEnumerable < IYubiKeyDevice > list = YubiKeyDevice .FindAll ();
50
60
return list .First ();
@@ -83,10 +93,6 @@ Platform abstraction layer (PAL) providing:
83
93
84
94
### Internal Assemblies
85
95
86
- #### Yubico.DotNetPolyfills
87
- > ⚠️ ** Not for public use**
88
- > Backports BCL features needed by the SDK.
89
-
90
96
#### Yubico.NativeShims
91
97
> ⚠️ ** Not for public use**
92
98
> 🔧 ** Unmanaged Library**
0 commit comments