git://git.exim.org
/
users
/
jgh
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e1481c9f48579228227ed6812b8942b0e9eeb11c
[users/jgh/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