diff options
| author | AKASHI Takahiro <[email protected]> | 2022-07-05 14:48:11 +0900 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2022-07-05 14:37:16 +0200 |
| commit | b124efc09fc5f62cc2e17d956ba3c5c9168738e8 (patch) | |
| tree | aa9fb9d50c9225efb6b9f12298a526f1f2dc4a3b /lib/crypto/mscode.asn1 | |
| parent | 0cc846dafcf6f6270c6587d6fe79011834d6e49a (diff) | |
lib: crypto: add mscode_parser
In MS authenticode, pkcs7 should have data in its contentInfo field.
This data is tagged with SpcIndirectData type and, for a signed PE image,
provides a image's message digest as SpcPeImageData.
This parser is used in image authentication to parse the field and
retrieve a message digest.
Imported from linux v5.19-rc, crypto/asymmetric_keys/mscode*.
Checkpatch.pl generates tones of warnings, but those are not fixed
for the sake of maintainability (importing from another source).
Signed-off-by: AKASHI Takahiro <[email protected]>
Diffstat (limited to 'lib/crypto/mscode.asn1')
| -rw-r--r-- | lib/crypto/mscode.asn1 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/crypto/mscode.asn1 b/lib/crypto/mscode.asn1 new file mode 100644 index 00000000000..6d09ba48c41 --- /dev/null +++ b/lib/crypto/mscode.asn1 @@ -0,0 +1,28 @@ +--- Microsoft individual code signing data blob parser +--- +--- Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. +--- Written by David Howells ([email protected]) +--- +--- This program is free software; you can redistribute it and/or +--- modify it under the terms of the GNU General Public Licence +--- as published by the Free Software Foundation; either version +--- 2 of the Licence, or (at your option) any later version. +--- + +MSCode ::= SEQUENCE { + type SEQUENCE { + contentType ContentType, + parameters ANY + }, + content SEQUENCE { + digestAlgorithm DigestAlgorithmIdentifier, + digest OCTET STRING ({ mscode_note_digest }) + } +} + +ContentType ::= OBJECT IDENTIFIER ({ mscode_note_content_type }) + +DigestAlgorithmIdentifier ::= SEQUENCE { + algorithm OBJECT IDENTIFIER ({ mscode_note_digest_algo }), + parameters ANY OPTIONAL +} |
