Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion TargetsModule.asn1
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ TargetsModule DEFINITIONS AUTOMATIC TAGS ::= BEGIN
custom Custom OPTIONAL
}
Target ::= SEQUENCE {
-- URL to download the target.
fileDownloadUrl URL,
filename Filename,
length Length,
numberOfHashes Length,
Expand Down Expand Up @@ -78,7 +80,11 @@ TargetsModule DEFINITIONS AUTOMATIC TAGS ::= BEGIN
-- This is the symmetric key type.
encryptedSymmetricKeyType EncryptedSymmetricKeyType,
-- This is the symmetric key encrypted using the asymmetric ECU key.
encryptedSymmetricKeyValue BinaryData
encryptedSymmetricKeyValue BinaryData,
-- This is symmetric key algorithm mode, for e.g AFB,CFB
encryptedSymmetricKeyAlgorithmMode VisibleString,
-- Initialization vector
iv BinaryData
}
EncryptedSymmetricKeyType ::= ENUMERATED {aes128, aes192, aes256, ...}

Expand Down