Avoid writing msglog files in -bh and -bhc modes. Bug 1804
[exim.git] / src / src / pdkim / blob.h
1 /*
2  *  PDKIM - a RFC4871 (DKIM) implementation
3  *
4  *  Copyright (C) 2016  Exim maintainers
5  *
6  *  RSA signing/verification interface
7  */
8
9 #ifndef BLOB_H  /* entire file */
10 #define BLOB_H
11
12 typedef struct {
13   uschar * data;
14   size_t   len;
15 } blob;
16
17 #endif