Skip to content

Commit ef56152

Browse files
committed
update UWP references to WinUI
1 parent 5d5f222 commit ef56152

10 files changed

Lines changed: 27 additions & 27 deletions

hub/apps/develop/security/certificates.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
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.
44
ms.assetid: 4EA2A9DF-BA6B-45FC-AC46-2C8FC085F90D
55
ms.date: 02/08/2017
66
ms.topic: article
@@ -12,11 +12,11 @@ ms.localizationpriority: medium
1212

1313

1414

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.
1616

1717
### Shared certificate stores
1818

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).
2020

2121
### Certificate storage per app container
2222

hub/apps/develop/security/common-cryptography-tasks.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ These articles provide example code for common Universal Windows Platform (UWP)
1313

1414
| Topic | Description |
1515
|---------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
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 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. |
2121

hub/apps/develop/security/compare-buffers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Compare buffers
3-
description: This example code shows how to compare buffers in a Universal Windows Platform (UWP) app.
3+
description: This example code shows how to compare buffers in a WinUI app.
44
ms.assetid: CB086E51-544A-470D-B7C8-C055271CD615
55
ms.date: 02/08/2017
66
ms.topic: article
@@ -11,7 +11,7 @@ ms.localizationpriority: medium
1111

1212

1313

14-
This example code shows how to compare buffers in a Universal Windows Platform (UWP) app.
14+
This example code shows how to compare buffers in a WinUI app.
1515

1616
```cs
1717
public void CompareBuffers()

hub/apps/develop/security/convert-between-strings-binary-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Convert between strings and binary data
3-
description: This example code shows how to convert between strings and binary data in a Universal Windows Platform (UWP) app.
3+
description: This example code shows how to convert between strings and binary data in a WinUI app.
44
ms.assetid: AED4C74F-E63B-4980-BB4D-28ACCC1AB58B
55
ms.date: 02/08/2017
66
ms.topic: article
@@ -11,7 +11,7 @@ ms.localizationpriority: medium
1111

1212

1313

14-
This example code shows how to convert between strings and binary data in a Universal Windows Platform (UWP) app.
14+
This example code shows how to convert between strings and binary data in a WinUI app.
1515

1616
```cs
1717
public void ConvertData()

hub/apps/develop/security/copy-to-from-byte-arrays.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Copy to and from byte arrays
3-
description: This example code shows how to copy to and from byte arrays in a Universal Windows Platform (UWP) app.
3+
description: This example code shows how to copy to and from byte arrays in a WinUI app.
44
ms.assetid: C343B08C-1FA1-40FD-8CA5-7FC9B707C5E3
55
ms.date: 02/08/2017
66
ms.topic: article
@@ -11,7 +11,7 @@ ms.localizationpriority: medium
1111

1212

1313

14-
This example code shows how to copy to and from byte arrays in a Universal Windows Platform (UWP) app.
14+
This example code shows how to copy to and from byte arrays in a WinUI app.
1515

1616
```cs
1717
public void ByteArrayCopy()

hub/apps/develop/security/create-random-numbers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.localizationpriority: medium
1111

1212

1313

14-
This example code shows how to create a random number or buffer for use in cryptography in a Universal Windows Platform (UWP) app.
14+
This example code shows how to create a random number or buffer for use in cryptography in a WinUI app.
1515

1616
```cs
1717
public string GenerateRandomData()

hub/apps/develop/security/cryptography.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
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.
44
ms.assetid: 9C213036-47FD-4AA4-99E0-84006BE63F47
55
ms.date: 02/08/2017
66
ms.topic: article
@@ -12,7 +12,7 @@ ms.localizationpriority: medium
1212

1313

1414

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.
1616

1717
## Terminology
1818

@@ -135,11 +135,11 @@ The following articles provide more detail on security scenarios:
135135

136136
| Topic | Description |
137137
|-------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
138-
| [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. |
139139
| [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. |
142142
| [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. |
144144

145145

hub/apps/develop/security/data-protection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
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.
44
ms.assetid: 9EE3CC45-5C44-4196-BD8B-1D64EFC5C509
55
ms.date: 02/08/2017
66
ms.topic: article
@@ -11,7 +11,7 @@ ms.localizationpriority: medium
1111

1212

1313

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.
1515

1616
You can use the data protection APIs in multiple ways:
1717

hub/apps/develop/security/encode-decode-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Encode and decode data
3-
description: This example code shows how to encode and decode base64 and hexadecimal data in a Universal Windows Platform (UWP) app.
3+
description: This example code shows how to encode and decode base64 and hexadecimal data in a WinUI app.
44
ms.assetid: 2CC23863-E840-48F4-B087-0479045743AC
55
ms.date: 02/08/2017
66
ms.topic: article
@@ -11,7 +11,7 @@ ms.localizationpriority: medium
1111

1212

1313

14-
This example code shows how to encode and decode base64 and hexadecimal data in a Universal Windows Platform (UWP) app.
14+
This example code shows how to encode and decode base64 and hexadecimal data in a WinUI app.
1515

1616
```cs
1717
public void EncodeDecodeBase64()

hub/apps/develop/security/macs-hashes-signatures.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
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.
44
ms.assetid: E674312F-6678-44C5-91D9-B489F49C4D3C
55
ms.date: 02/08/2017
66
ms.topic: article
@@ -12,7 +12,7 @@ ms.localizationpriority: medium
1212

1313

1414

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.
1616

1717
## Message authentication codes (MACs)
1818

0 commit comments

Comments
 (0)