Blame view

crypto/asymmetric_keys/verify_pefile.h 1.16 KB
26d1164be   David Howells   pefile: Parse a P...
1
2
3
4
5
6
7
8
9
10
  /* PE Binary parser bits
   *
   * Copyright (C) 2014 Red Hat, Inc. All Rights Reserved.
   * Written by David Howells (dhowells@redhat.com)
   *
   * 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.
   */
26d1164be   David Howells   pefile: Parse a P...
11
12
13
14
15
16
17
18
19
20
21
22
23
  #include <crypto/pkcs7.h>
  #include <crypto/hash_info.h>
  
  struct pefile_context {
  	unsigned	header_size;
  	unsigned	image_checksum_offset;
  	unsigned	cert_dirent_offset;
  	unsigned	n_data_dirents;
  	unsigned	n_sections;
  	unsigned	certs_size;
  	unsigned	sig_offset;
  	unsigned	sig_len;
  	const struct section_header *secs;
26d1164be   David Howells   pefile: Parse a P...
24
25
26
27
  
  	/* PKCS#7 MS Individual Code Signing content */
  	const void	*digest;		/* Digest */
  	unsigned	digest_len;		/* Digest length */
4e8ae72a7   David Howells   X.509: Make algo ...
28
  	const char	*digest_algo;		/* Digest algorithm */
26d1164be   David Howells   pefile: Parse a P...
29
30
31
32
33
34
35
36
  };
  
  #define kenter(FMT, ...)					\
  	pr_devel("==> %s("FMT")
  ", __func__, ##__VA_ARGS__)
  #define kleave(FMT, ...) \
  	pr_devel("<== %s()"FMT"
  ", __func__, ##__VA_ARGS__)
4c0b4b1d1   David Howells   pefile: Parse the...
37
38
39
40
  
  /*
   * mscode_parser.c
   */
e68503bd6   David Howells   KEYS: Generalise ...
41
42
  extern int mscode_parse(void *_ctx, const void *content_data, size_t data_len,
  			size_t asn1hdrlen);