Skip to content

Commit 0bd3907

Browse files
committed
WE2-1104 Signed-off-by: Sven Mitt <[email protected]>
1 parent 2c24ca6 commit 0bd3907

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
![European Regional Development Fund](https://raw.githubusercontent.com/open-eid/DigiDoc4-Client/master/client/images/EL_Regionaalarengu_Fond.png)
44

5-
*web-eid-authtoken-validation-dotnet* is a .NET library for issuing challenge nonces and validating Web eID JWT authentication tokens during secure authentication with electronic ID (eID) smart cards in web applications.
5+
Web eID enables usage of European Union electronic identity (eID) smart cards for secure authentication and digital signing of documents on the web using public-key cryptography.
66

7-
More information about the Web eID project is available on the project [website](https://web-eid.eu/).
7+
Web eID currently supports Estonian, Finnish, Latvian, Lithuanian, Belgian, Czech and Croatian eID cards.
8+
9+
*web-eid-authtoken-validation-dotnet* is a .NET server side library to help implement authentication with electronic ID (eID) smart cards in web applications.
10+
11+
Additional information regarding the Web eID project can be found on the official project [documentation](https://web-eid.eu/) and in the webseite [Web eID solution](https://www.id.ee/en/article/web-eid).
812

913
# Quickstart
1014

@@ -429,3 +433,7 @@ ChallengeNonce challengeNonce = nonceGenerator.GenerateAndStoreNonce(timeToLive)
429433
```
430434

431435
The `GenerateAndStoreNonce(TimeSpan ttl)` method both generates the nonce and stores it in the store. The `ttl` parameter defines nonce time-to-live duration. When the time-to-live passes, the nonce is considered to be expired.
436+
437+
## Feedback
438+
439+
For technical support or to report issues, please submit a [support ticket](https://github.com/web-eid/web-eid-authtoken-validation-dotnet/issues) or contact our support team at [[email protected]](mailto:[email protected]).

src/WebEid.Security/WebEid.Security.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<RootNamespace>WebEid.Security</RootNamespace>
99
<AssemblyName>WebEid.Security</AssemblyName>
1010
<GenerateDocumentationFile>True</GenerateDocumentationFile>
11+
<PackageReadmeFile>README.md</PackageReadmeFile>
1112
<PublisherName>RIA</PublisherName>
1213
<Authors>RIA</Authors>
1314
<Copyright>Copyright © Republic of Estonia Information System Authority 2023</Copyright>
@@ -19,6 +20,7 @@
1920
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
2021
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
2122
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.1.2" />
23+
<None Include="../../README.md" Pack="true" PackagePath="\"/>
2224
</ItemGroup>
2325

2426
<PropertyGroup>

0 commit comments

Comments
 (0)