fs/mfs: Remove a few assert.h includes
[minix3.git] / crypto / external / bsd / netpgp / dist / src / librsa / rsastubs.h
blobe6f999c903e779a50823daa4a893337052941b46
1 #ifndef RSASTUBS_H_
2 #define RSASTUBS_H_ 20120412
4 #include "rsa.h"
6 #ifndef __BEGIN_DECLS
7 # if defined(__cplusplus)
8 # define __BEGIN_DECLS extern "C" {
9 # define __END_DECLS }
10 # else
11 # define __BEGIN_DECLS
12 # define __END_DECLS
13 # endif
14 #endif
16 __BEGIN_DECLS
18 typedef int pem_password_cb(char */*buf*/, int /*size*/, int /*rwflag*/, void */*userdata*/);
20 RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **x, pem_password_cb *cb, void *u);
21 DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **x, pem_password_cb *cb, void *u);
23 __END_DECLS
25 #endif