Skip to content

Commit c8d929a

Browse files
committed
Reformat Example-to-use-OpenSC-with-Microsoft-CNG-and-CryptoAPI.md
1 parent 5c19324 commit c8d929a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Example-to-use-OpenSC-with-Microsoft-CNG-and-CryptoAPI.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# OpenSC and Microsoft CNG
2+
23
It is possible to use the Smartcard via OpenSC with the [Microsoft CNG](https://msdn.microsoft.com/de-de/library/windows/desktop/aa376210(v=vs.85).aspx) library. CNG can be used together with [CryptoAPI](https://msdn.microsoft.com/en-us/library/ms867086.aspx).
34

45
## Example: Read the x509 Certificate from connected Smartcard
6+
57
With the CNG its easy to use the smartcard like a normal pkcs12 container or something similar.
68

7-
```
9+
```C
810
#include <Windows.h>
911
#include <wincrypt.h>
1012

@@ -78,7 +80,8 @@ int main() {
7880
```
7981

8082
### Important functions
83+
8184
* [NCryptOpenStorageProvider](https://msdn.microsoft.com/de-de/library/windows/desktop/aa376286(v=vs.85).aspx)
8285
* [NCryptEnumKeys](https://msdn.microsoft.com/en-us/library/windows/desktop/aa376259(v=vs.85).aspx)
8386
* [NCryptOpenKey](https://msdn.microsoft.com/de-de/library/windows/desktop/aa376284(v=vs.85).aspx)
84-
* [NCryptGetProperty](https://msdn.microsoft.com/de-de/library/windows/desktop/aa376273(v=vs.85).aspx)
87+
* [NCryptGetProperty](https://msdn.microsoft.com/de-de/library/windows/desktop/aa376273(v=vs.85).aspx)

0 commit comments

Comments
 (0)