diff options
author | 2002-03-21 16:57:15 +0000 | |
---|---|---|
committer | 2002-03-21 16:57:15 +0000 | |
commit | 30c3af7e22b7559f0995ff726efbdcaac3d99a2a (patch) | |
tree | 449def785e3a8904d1cd4f78681a0a14319cedf5 /usr.bin/ssh | |
parent | move key upload to scard.[ch] (diff) | |
download | wireguard-openbsd-30c3af7e22b7559f0995ff726efbdcaac3d99a2a.tar.xz wireguard-openbsd-30c3af7e22b7559f0995ff726efbdcaac3d99a2a.zip |
remove const
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/scard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/scard.c b/usr.bin/ssh/scard.c index fc8e1f4a378..28b262580ec 100644 --- a/usr.bin/ssh/scard.c +++ b/usr.bin/ssh/scard.c @@ -24,7 +24,7 @@ #ifdef SMARTCARD #include "includes.h" -RCSID("$OpenBSD: scard.c,v 1.19 2002/03/21 16:54:53 markus Exp $"); +RCSID("$OpenBSD: scard.c,v 1.20 2002/03/21 16:57:15 markus Exp $"); #include <openssl/engine.h> #include <openssl/evp.h> @@ -189,7 +189,7 @@ err: /* private key operations */ static int -sc_private_decrypt(int flen, const u_char *from, u_char *to, RSA *rsa, +sc_private_decrypt(int flen, u_char *from, u_char *to, RSA *rsa, int padding) { u_char *padded = NULL; @@ -233,7 +233,7 @@ err: } static int -sc_private_encrypt(int flen, const u_char *from, u_char *to, RSA *rsa, +sc_private_encrypt(int flen, u_char *from, u_char *to, RSA *rsa, int padding) { u_char *padded = NULL; |