0001 --- Microsoft individual code signing data blob parser
0002 ---
0003 --- Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
0004 --- Written by David Howells (dhowells@redhat.com)
0005 ---
0006 --- This program is free software; you can redistribute it and/or
0007 --- modify it under the terms of the GNU General Public Licence
0008 --- as published by the Free Software Foundation; either version
0009 --- 2 of the Licence, or (at your option) any later version.
0010 ---
0011
0012 MSCode ::= SEQUENCE {
0013 type SEQUENCE {
0014 contentType ContentType,
0015 parameters ANY
0016 },
0017 content SEQUENCE {
0018 digestAlgorithm DigestAlgorithmIdentifier,
0019 digest OCTET STRING ({ mscode_note_digest })
0020 }
0021 }
0022
0023 ContentType ::= OBJECT IDENTIFIER ({ mscode_note_content_type })
0024
0025 DigestAlgorithmIdentifier ::= SEQUENCE {
0026 algorithm OBJECT IDENTIFIER ({ mscode_note_digest_algo }),
0027 parameters ANY OPTIONAL
0028 }