Skip to content

Commit 201287b

Browse files
authored
status (#33881)
1 parent 06e72d8 commit 201287b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

aspnetcore/security/data-protection/implementation/authenticated-encryption-details.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ The next 128 bits, or 16 bytes is the key identifier (80 9C 81 0C 19 66 19 40 95
4949
The remainder contains the payload and is specific to the format used.
5050

5151
> [!WARNING]
52-
> All payloads protected to a given key will begin with the same 20-byte (magic value, key id) header. Administrators can use this fact for diagnostic purposes to approximate when a payload was generated. For example, the payload above corresponds to key {0c819c80-6619-4019-9536-53f8aaffee57}. If after checking the key repository you find that this specific key's activation date was 2015-01-01 and its expiration date was 2015-03-01, then it's reasonable to assume that the payload (if not tampered with) was generated within that window, give or take a small fudge factor on either side.
52+
> All payloads protected to a given key will begin with the same 20-byte (magic value, key id) header. Administrators can use this fact for diagnostic purposes to approximate when a payload was generated. For example, the payload above corresponds to key {aaaaaaaa-0b0b-1c1c-2d2d-333333333333}. If after checking the key repository you find that this specific key's activation date was 2015-01-01 and its expiration date was 2015-03-01, then it's reasonable to assume that the payload (if not tampered with) was generated within that window, give or take a small fudge factor on either side.

aspnetcore/security/data-protection/implementation/key-storage-format.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Keys exist as top-level objects in the key repository. By convention keys have t
2121

2222
```xml
2323
<?xml version="1.0" encoding="utf-8"?>
24-
<key id="80732141-ec8f-4b80-af9c-c4d2d1ff8901" version="1">
24+
<key id="aaaaaaaa-0b0b-1c1c-2d2d-333333333333" version="1">
2525
<creationDate>2015-03-19T23:32:02.3949887Z</creationDate>
2626
<activationDate>2015-03-19T23:32:02.3839429Z</activationDate>
2727
<expirationDate>2015-06-17T23:32:02.3839429Z</expirationDate>
@@ -50,7 +50,7 @@ The \<key> element contains the following attributes and child elements:
5050

5151
* A \<descriptor> element, which contains information on the authenticated encryption implementation contained within this key.
5252

53-
In the above example, the key's id is {80732141-ec8f-4b80-af9c-c4d2d1ff8901}, it was created and activated on March 19, 2015, and it has a lifetime of 90 days. (Occasionally the activation date might be slightly before the creation date as in this example. This is due to a nit in how the APIs work and is harmless in practice.)
53+
In the above example, the key's id is {aaaaaaaa-0b0b-1c1c-2d2d-333333333333}, it was created and activated on March 19, 2015, and it has a lifetime of 90 days. (Occasionally the activation date might be slightly before the creation date as in this example. This is due to a nit in how the APIs work and is harmless in practice.)
5454

5555
## The \<descriptor> element
5656

@@ -74,7 +74,7 @@ For revocations of individual keys, the file contents will be as below.
7474
<?xml version="1.0" encoding="utf-8"?>
7575
<revocation version="1">
7676
<revocationDate>2015-03-20T22:45:30.2616742Z</revocationDate>
77-
<key id="eb4fc299-8808-409d-8a34-23fc83d026c9" />
77+
<key id="bbbbbbbb-1c1c-2d2d-3e3e-444444444444" />
7878
<reason>human-readable reason</reason>
7979
</revocation>
8080
```

aspnetcore/security/key-vault-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The X.509 certificate is managed by the OS. The app calls <xref:Microsoft.Extens
143143
Example values:
144144

145145
* Key Vault name: `contosovault`
146-
* Application ID: `627e911e-43cc-61d4-992e-12db9c81b413`
146+
* Application ID: `00001111-aaaa-2222-bbbb-3333cccc4444`
147147
* Certificate thumbprint: `fe14593dd66b2406c5269d742d04b6e1ab03adb1`
148148

149149
`appsettings.json`:
@@ -516,7 +516,7 @@ The X.509 certificate is managed by the OS. The app calls <xref:Microsoft.Extens
516516
Example values:
517517

518518
* Key Vault name: `contosovault`
519-
* Application ID: `627e911e-43cc-61d4-992e-12db9c81b413`
519+
* Application ID: `00001111-aaaa-2222-bbbb-3333cccc4444`
520520
* Certificate thumbprint: `fe14593dd66b2406c5269d742d04b6e1ab03adb1`
521521

522522
`appsettings.json`:

0 commit comments

Comments
 (0)