mscode.asn1 840 B

12345678910111213141516171819202122232425262728
  1. --- Microsoft individual code signing data blob parser
  2. ---
  3. --- Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
  4. --- Written by David Howells (dhowells@redhat.com)
  5. ---
  6. --- This program is free software; you can redistribute it and/or
  7. --- modify it under the terms of the GNU General Public Licence
  8. --- as published by the Free Software Foundation; either version
  9. --- 2 of the Licence, or (at your option) any later version.
  10. ---
  11. MSCode ::= SEQUENCE {
  12. type SEQUENCE {
  13. contentType ContentType,
  14. parameters ANY
  15. },
  16. content SEQUENCE {
  17. digestAlgorithm DigestAlgorithmIdentifier,
  18. digest OCTET STRING ({ mscode_note_digest })
  19. }
  20. }
  21. ContentType ::= OBJECT IDENTIFIER ({ mscode_note_content_type })
  22. DigestAlgorithmIdentifier ::= SEQUENCE {
  23. algorithm OBJECT IDENTIFIER ({ mscode_note_digest_algo }),
  24. parameters ANY OPTIONAL
  25. }