summaryrefslogtreecommitdiff
path: root/src/core/hw
diff options
context:
space:
mode:
authorGravatar Sebastian Valle2017-06-26 19:35:52 -0500
committerGravatar GitHub2017-06-26 19:35:52 -0500
commitfa53ccc74b26a0cfe80e3302cce3238b875cc20c (patch)
treed22384c46b765fefcc71a17a703109230f83baa7 /src/core/hw
parentexternals: silence warning C4390 on MSVC for cryptopp (#2805) (diff)
parentUDS: Use the ToDS and FromDS fields to properly calculate the AAD used during... (diff)
downloadyuzu-fa53ccc74b26a0cfe80e3302cce3238b875cc20c.tar.gz
yuzu-fa53ccc74b26a0cfe80e3302cce3238b875cc20c.tar.xz
yuzu-fa53ccc74b26a0cfe80e3302cce3238b875cc20c.zip
Merge pull request #2778 from Subv/uds_more
Services/UDS: Stub SendTo to generate the unencrypted data frames with the right headers
Diffstat (limited to 'src/core/hw')
-rw-r--r--src/core/hw/aes/key.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hw/aes/key.h b/src/core/hw/aes/key.h
index b01d04f13..c9f1342f4 100644
--- a/src/core/hw/aes/key.h
+++ b/src/core/hw/aes/key.h
@@ -12,6 +12,8 @@ namespace HW {
12namespace AES { 12namespace AES {
13 13
14enum KeySlotID : size_t { 14enum KeySlotID : size_t {
15 // AES Keyslot used to generate the UDS data frame CCMP key.
16 UDSDataKey = 0x2D,
15 APTWrap = 0x31, 17 APTWrap = 0x31,
16 18
17 MaxKeySlotID = 0x40, 19 MaxKeySlotID = 0x40,