You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hub/apps/develop/security/certificates.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Intro to certificates
3
-
description: This article discusses the use of certificates in Universal Windows Platform (UWP) apps.
3
+
description: This article discusses the use of certificates in WinUI apps.
4
4
ms.assetid: 4EA2A9DF-BA6B-45FC-AC46-2C8FC085F90D
5
5
ms.date: 02/08/2017
6
6
ms.topic: article
@@ -12,11 +12,11 @@ ms.localizationpriority: medium
12
12
13
13
14
14
15
-
This article discusses the use of certificates in Universal Windows Platform (UWP) apps. Digital certificates are used in public key cryptography to bind a public key to a person, computer, or organization. The bound identities are most often used to authenticate one entity to another. For example, certificates are often used to authenticate a web server to a user and a user to a web server. You can create certificate requests and install or import issued certificates. You can also enroll a certificate in a certificate hierarchy.
15
+
This article discusses the use of certificates in WinUI apps. Digital certificates are used in public key cryptography to bind a public key to a person, computer, or organization. The bound identities are most often used to authenticate one entity to another. For example, certificates are often used to authenticate a web server to a user and a user to a web server. You can create certificate requests and install or import issued certificates. You can also enroll a certificate in a certificate hierarchy.
16
16
17
17
### Shared certificate stores
18
18
19
-
UWP apps use the new isolationist application model introduced in Windows 8. In this model, apps run in low-level operating system construct, called an app container, that prohibits the app from accessing resources or files outside of itself unless explicitly permitted to do so. The following sections describe the implications this has on public key infrastructure (PKI).
19
+
WinUI apps use the new isolationist application model introduced in Windows 8. In this model, apps run in low-level operating system construct, called an app container, that prohibits the app from accessing resources or files outside of itself unless explicitly permitted to do so. The following sections describe the implications this has on public key infrastructure (PKI).
|[Create random numbers](create-random-numbers.md)| This example code shows how to create a random number or buffer for use in cryptography in an UWP app. |
17
-
|[Compare buffers](compare-buffers.md)| This example code shows how to compare buffers in an UWP app. |
18
-
|[Convert between strings and binary data](convert-between-strings-binary-data.md)| This example code shows how to convert between strings and binary data in an UWP app. |
19
-
|[Copy to and from byte arrays](copy-to-from-byte-arrays.md)| This example code shows how to copy to and from byte arrays in an UWP app. |
20
-
|[Encode and decode data](encode-decode-data.md)| This example code shows how to encode and decode base64 and hexadecimal data in an UWP app. |
16
+
|[Create random numbers](create-random-numbers.md)| This example code shows how to create a random number or buffer for use in cryptography in a WinUI app. |
17
+
|[Compare buffers](compare-buffers.md)| This example code shows how to compare buffers in a WinUI app. |
18
+
|[Convert between strings and binary data](convert-between-strings-binary-data.md)| This example code shows how to convert between strings and binary data in a WinUI app. |
19
+
|[Copy to and from byte arrays](copy-to-from-byte-arrays.md)| This example code shows how to copy to and from byte arrays in a WinUI app. |
20
+
|[Encode and decode data](encode-decode-data.md)| This example code shows how to encode and decode base64 and hexadecimal data in a WinUI app. |
Copy file name to clipboardExpand all lines: hub/apps/develop/security/cryptography.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Cryptography
3
-
description: The article provides an overview of the cryptography features available to Universal Windows Platform (UWP) apps. For detailed information on particular tasks, see the table at the end of this article.
3
+
description: The article provides an overview of the cryptography features available to WinUI apps. For detailed information on particular tasks, see the table at the end of this article.
4
4
ms.assetid: 9C213036-47FD-4AA4-99E0-84006BE63F47
5
5
ms.date: 02/08/2017
6
6
ms.topic: article
@@ -12,7 +12,7 @@ ms.localizationpriority: medium
12
12
13
13
14
14
15
-
The article provides an overview of the cryptography features available to Universal Windows Platform (UWP) apps. For detailed information on particular tasks, see the table at the end of this article.
15
+
The article provides an overview of the cryptography features available to WinUI apps. For detailed information on particular tasks, see the table at the end of this article.
16
16
17
17
## Terminology
18
18
@@ -135,11 +135,11 @@ The following articles provide more detail on security scenarios:
|[Certificates](certificates.md)| This article discusses the use of certificates in UWP apps. Digital certificates are used in public key cryptography to bind a public key to a person, computer, or organization. The bound identities are most often used to authenticate one entity to another. For example, certificates are often used to authenticate a web server to a user and a user to a web server. You can create certificate requests and install or import issued certificates. You can also enroll a certificate in a certificate hierarchy. |
138
+
|[Certificates](certificates.md)| This article discusses the use of certificates in WinUI apps. Digital certificates are used in public key cryptography to bind a public key to a person, computer, or organization. The bound identities are most often used to authenticate one entity to another. For example, certificates are often used to authenticate a web server to a user and a user to a web server. You can create certificate requests and install or import issued certificates. You can also enroll a certificate in a certificate hierarchy. |
139
139
|[Cryptographic keys](cryptographic-keys.md)| This article shows how to use standard key derivation functions to derive keys and how to encrypt content using symmetric and asymmetric keys. |
140
-
|[Data protection](data-protection.md)| This article explains how to use the [DataProtectionProvider](/uwp/api/Windows.Security.Cryptography.DataProtection.DataProtectionProvider) class in the [Windows.Security.Cryptography.DataProtection](/uwp/api/Windows.Security.Cryptography.DataProtection) namespace to encrypt and decrypt digital data in a UWP app. |
141
-
|[MACs, hashes, and signatures](macs-hashes-signatures.md)| This article discusses how message authentication codes (MACs), hashes, and signatures can be used in UWP apps to detect message tampering. |
140
+
|[Data protection](data-protection.md)| This article explains how to use the [DataProtectionProvider](/uwp/api/Windows.Security.Cryptography.DataProtection.DataProtectionProvider) class in the [Windows.Security.Cryptography.DataProtection](/uwp/api/Windows.Security.Cryptography.DataProtection) namespace to encrypt and decrypt digital data in a WinUI app. |
141
+
|[MACs, hashes, and signatures](macs-hashes-signatures.md)| This article discusses how message authentication codes (MACs), hashes, and signatures can be used in WinUI apps to detect message tampering. |
142
142
|[Export restrictions on cryptography](export-restrictions-cryptography.md)| Use this info to determine if your app uses cryptography in a way that might prevent it from being listed in the Microsoft Store. |
143
-
|[Common cryptography tasks](common-cryptography-tasks.md)| These articles provide example code for common UWP cryptography tasks, such as creating random numbers, comparing buffers, converting between strings and binary data, copying to and from byte arrays, and encoding and decoding data. |
143
+
|[Common cryptography tasks](common-cryptography-tasks.md)| These articles provide example code for common WinUI cryptography tasks, such as creating random numbers, comparing buffers, converting between strings and binary data, copying to and from byte arrays, and encoding and decoding data. |
Copy file name to clipboardExpand all lines: hub/apps/develop/security/data-protection.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Data protection
3
-
description: This article explains how to use the DataProtectionProvider class in the Windows.Security.Cryptography.DataProtection namespace to encrypt and decrypt digital data in a UWP app.
3
+
description: This article explains how to use the DataProtectionProvider class in the Windows.Security.Cryptography.DataProtection namespace to encrypt and decrypt digital data in a WinUI app.
4
4
ms.assetid: 9EE3CC45-5C44-4196-BD8B-1D64EFC5C509
5
5
ms.date: 02/08/2017
6
6
ms.topic: article
@@ -11,7 +11,7 @@ ms.localizationpriority: medium
11
11
12
12
13
13
14
-
This article explains how to use the [**DataProtectionProvider**](/uwp/api/Windows.Security.Cryptography.DataProtection.DataProtectionProvider) class in the [**Windows.Security.Cryptography.DataProtection**](/uwp/api/Windows.Security.Cryptography.DataProtection) namespace to encrypt and decrypt digital data in a UWP app.
14
+
This article explains how to use the [**DataProtectionProvider**](/uwp/api/Windows.Security.Cryptography.DataProtection.DataProtectionProvider) class in the [**Windows.Security.Cryptography.DataProtection**](/uwp/api/Windows.Security.Cryptography.DataProtection) namespace to encrypt and decrypt digital data in a WinUI app.
15
15
16
16
You can use the data protection APIs in multiple ways:
Copy file name to clipboardExpand all lines: hub/apps/develop/security/macs-hashes-signatures.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: MACs, hashes, and signatures
3
-
description: This article discusses how message authentication codes (MACs), hashes, and signatures can be used in Universal Windows Platform (UWP) apps to detect message tampering.
3
+
description: This article discusses how message authentication codes (MACs), hashes, and signatures can be used in WinUI apps to detect message tampering.
4
4
ms.assetid: E674312F-6678-44C5-91D9-B489F49C4D3C
5
5
ms.date: 02/08/2017
6
6
ms.topic: article
@@ -12,7 +12,7 @@ ms.localizationpriority: medium
12
12
13
13
14
14
15
-
This article discusses how message authentication codes (MACs), hashes, and signatures can be used in Universal Windows Platform (UWP) apps to detect message tampering.
15
+
This article discusses how message authentication codes (MACs), hashes, and signatures can be used in WinUI apps to detect message tampering.
0 commit comments