1 /*
2 **  Copyright (c) 2005, 2007 Sendmail, Inc. and its suppliers.
3 **    All rights reserved.
4 **
5 **  Copyright (c) 2009, 2012, The Trusted Domain Project.  All rights reserved.
6 */
7 
8 #ifndef _DKIM_KEYS_H_
9 #define _DKIM_KEYS_H_
10 
11 /* libopendkim includes */
12 #include "dkim.h"
13 
14 /* prototypes */
15 extern DKIM_STAT dkim_get_key_dns __P((DKIM *, DKIM_SIGINFO *, u_char *,
16                                        size_t));
17 extern DKIM_STAT dkim_get_key_file __P((DKIM *, DKIM_SIGINFO *, u_char *,
18                                         size_t));
19 
20 #endif /* ! _DKIM_KEYS_H_ */
21