(i2d_RSAPublicKey): fix prototype

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17089 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-04-16 19:38:23 +00:00
parent b2a23b8cc4
commit ff8368d8a7
2 changed files with 2 additions and 2 deletions

View File

@@ -351,7 +351,7 @@ d2i_RSAPrivateKey(RSA *rsa, const unsigned char **pp, size_t len)
} }
int int
i2d_RSAPublicKey(RSA *rsa, const unsigned char **pp) i2d_RSAPublicKey(RSA *rsa, unsigned char **pp)
{ {
RSAPublicKey data; RSAPublicKey data;
size_t size; size_t size;

View File

@@ -161,6 +161,6 @@ int RSA_verify(int, const unsigned char *, unsigned int,
unsigned char *, unsigned int, RSA *); unsigned char *, unsigned int, RSA *);
RSA * d2i_RSAPrivateKey(RSA *, const unsigned char **, size_t); RSA * d2i_RSAPrivateKey(RSA *, const unsigned char **, size_t);
int i2d_RSAPublicKey(RSA *, const unsigned char **); int i2d_RSAPublicKey(RSA *, unsigned char **);
#endif /* _HEIM_RSA_H */ #endif /* _HEIM_RSA_H */