git://git.exim.org
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix queue_name tracking across exec
[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