Add i2d_RSAPrivateKey.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19703 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-01-04 20:23:24 +00:00
parent 3abdc16e2a
commit 7c04a560eb
2 changed files with 47 additions and 0 deletions

View File

@@ -61,6 +61,7 @@
#define RSA_verify hc_RSA_verify
#define RSA_generate_key_ex hc_RSA_generate_key_ex
#define d2i_RSAPrivateKey hc_d2i_RSAPrivateKey
#define i2d_RSAPrivateKey hc_i2d_RSAPrivateKey
#define i2d_RSAPublicKey hc_i2d_RSAPublicKey
/*
@@ -167,6 +168,8 @@ int RSA_verify(int, const unsigned char *, unsigned int,
int RSA_generate_key_ex(RSA *, int, BIGNUM *, BN_GENCB *);
RSA * d2i_RSAPrivateKey(RSA *, const unsigned char **, size_t);
int i2d_RSAPrivateKey(RSA *, unsigned char **);
int i2d_RSAPublicKey(RSA *, unsigned char **);
#endif /* _HEIM_RSA_H */