Avoid writing msglog files in -bh and -bhc modes. Bug 1804
[exim.git] / src / src / pdkim / blob.h
CommitLineData
2592e6c0
JH
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
12typedef struct {
13 uschar * data;
14 size_t len;
15} blob;
16
17#endif