Skip to content

Commit 5d5f222

Browse files
committed
move cryptography docs from UWP to WinUI
1 parent 5947ea7 commit 5d5f222

16 files changed

Lines changed: 91 additions & 31 deletions

.openpublishing.redirection.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8600,6 +8600,66 @@
86008600
"redirect_url": "/windows/apps/develop/security/windows-hello-auth-service",
86018601
"redirect_document_id": false
86028602
},
8603+
{
8604+
"source_path": "uwp/security/cryptography.md",
8605+
"redirect_url": "/windows/apps/develop/security/cryptography",
8606+
"redirect_document_id": false
8607+
},
8608+
{
8609+
"source_path": "uwp/security/certificates.md",
8610+
"redirect_url": "/windows/apps/develop/security/certificates",
8611+
"redirect_document_id": false
8612+
},
8613+
{
8614+
"source_path": "uwp/security/cryptographic-keys.md",
8615+
"redirect_url": "/windows/apps/develop/security/cryptographic-keys",
8616+
"redirect_document_id": false
8617+
},
8618+
{
8619+
"source_path": "uwp/security/data-protection.md",
8620+
"redirect_url": "/windows/apps/develop/security/data-protection",
8621+
"redirect_document_id": false
8622+
},
8623+
{
8624+
"source_path": "uwp/security/macs-hashes-and-signatures.md",
8625+
"redirect_url": "/windows/apps/develop/security/macs-hashes-signatures",
8626+
"redirect_document_id": false
8627+
},
8628+
{
8629+
"source_path": "uwp/security/export-restrictions-on-cryptography.md",
8630+
"redirect_url": "/windows/apps/develop/security/export-restrictions-cryptography",
8631+
"redirect_document_id": false
8632+
},
8633+
{
8634+
"source_path": "uwp/security/common-cryptography-tasks.md",
8635+
"redirect_url": "/windows/apps/develop/security/common-cryptography-tasks",
8636+
"redirect_document_id": false
8637+
},
8638+
{
8639+
"source_path": "uwp/security/create-random-numbers.md",
8640+
"redirect_url": "/windows/apps/develop/security/create-random-numbers",
8641+
"redirect_document_id": false
8642+
},
8643+
{
8644+
"source_path": "uwp/security/compare-buffers.md",
8645+
"redirect_url": "/windows/apps/develop/security/compare-buffers",
8646+
"redirect_document_id": false
8647+
},
8648+
{
8649+
"source_path": "uwp/security/convert-between-strings-and-binary-data.md",
8650+
"redirect_url": "/windows/apps/develop/security/convert-between-strings-binary-data",
8651+
"redirect_document_id": false
8652+
},
8653+
{
8654+
"source_path": "uwp/security/copy-to-and-from-byte-arrays.md",
8655+
"redirect_url": "/windows/apps/develop/security/copy-to-from-byte-arrays",
8656+
"redirect_document_id": false
8657+
},
8658+
{
8659+
"source_path": "uwp/security/encode-and-decode-data.md",
8660+
"redirect_url": "/windows/apps/develop/security/encode-decode-data",
8661+
"redirect_document_id": false
8662+
},
86038663
{
86048664
"source_path": "hub/apps/develop/security-and-identity.md",
86058665
"redirect_url": "/windows/apps/develop/security/",
File renamed without changes.

uwp/security/common-cryptography-tasks.md renamed to hub/apps/develop/security/common-cryptography-tasks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ These articles provide example code for common Universal Windows Platform (UWP)
1515
|---------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
1616
| [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. |
1717
| [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-and-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-and-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-and-decode-data.md) | This example code shows how to encode and decode base64 and hexadecimal data 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. |
2121

File renamed without changes.

uwp/security/convert-between-strings-and-binary-data.md renamed to hub/apps/develop/security/convert-between-strings-binary-data.md

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ The following articles provide more detail on security scenarios:
138138
| [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. |
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. |
140140
| [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-and-signatures.md) | This article discusses how message authentication codes (MACs), hashes, and signatures can be used in UWP apps to detect message tampering. |
142-
| [Export restrictions on cryptography](export-restrictions-on-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. |
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. |
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. |
143143
| [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. |
144144

145145

File renamed without changes.

0 commit comments

Comments
 (0)