remove stray ;
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18595 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -209,10 +209,10 @@ name(int flen,const unsigned char* f, unsigned char* t, RSA* r, int p){\
|
|||||||
return body; \
|
return body; \
|
||||||
}
|
}
|
||||||
|
|
||||||
RSAFUNC(RSA_public_encrypt, (r)->meth->rsa_pub_enc(flen, f, t, r, p));
|
RSAFUNC(RSA_public_encrypt, (r)->meth->rsa_pub_enc(flen, f, t, r, p))
|
||||||
RSAFUNC(RSA_public_decrypt, (r)->meth->rsa_pub_dec(flen, f, t, r, p));
|
RSAFUNC(RSA_public_decrypt, (r)->meth->rsa_pub_dec(flen, f, t, r, p))
|
||||||
RSAFUNC(RSA_private_encrypt, (r)->meth->rsa_priv_enc(flen, f, t, r, p));
|
RSAFUNC(RSA_private_encrypt, (r)->meth->rsa_priv_enc(flen, f, t, r, p))
|
||||||
RSAFUNC(RSA_private_decrypt, (r)->meth->rsa_priv_dec(flen, f, t, r, p));
|
RSAFUNC(RSA_private_decrypt, (r)->meth->rsa_priv_dec(flen, f, t, r, p))
|
||||||
|
|
||||||
/* XXX */
|
/* XXX */
|
||||||
int
|
int
|
||||||
@@ -236,10 +236,10 @@ RSA_verify(int type, const unsigned char *from, unsigned int flen,
|
|||||||
* support.
|
* support.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static RSAFUNC(null_rsa_public_encrypt, -1);
|
static RSAFUNC(null_rsa_public_encrypt, -1)
|
||||||
static RSAFUNC(null_rsa_public_decrypt, -1);
|
static RSAFUNC(null_rsa_public_decrypt, -1)
|
||||||
static RSAFUNC(null_rsa_private_encrypt, -1);
|
static RSAFUNC(null_rsa_private_encrypt, -1)
|
||||||
static RSAFUNC(null_rsa_private_decrypt, -1);
|
static RSAFUNC(null_rsa_private_decrypt, -1)
|
||||||
|
|
||||||
static int
|
static int
|
||||||
null_rsa_init(RSA *rsa)
|
null_rsa_init(RSA *rsa)
|
||||||
|
Reference in New Issue
Block a user