aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bf
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-26 16:43:10 +0000
committerUlf Möller <ulf@openssl.org>1999-04-26 16:43:10 +0000
commita9be3af5ad4836f7e50f0546311ca90c717b861e (patch)
treef44f7f8c4497d85da4c5cbd08067479bb20ced95 /crypto/bf
parent47339f6179fbefafc793c10b0411ed0365497d65 (diff)
downloadopenssl-a9be3af5ad4836f7e50f0546311ca90c717b861e.tar.gz
Remove NOPROTO definitions and error code comments.
Diffstat (limited to 'crypto/bf')
-rw-r--r--crypto/bf/bf_opts.c10
-rw-r--r--crypto/bf/bfspeed.c10
-rw-r--r--crypto/bf/bftest.c6
-rw-r--r--crypto/bf/blowfish.h14
4 files changed, 0 insertions, 40 deletions
diff --git a/crypto/bf/bf_opts.c b/crypto/bf/bf_opts.c
index f63fa8e168..7253d765e9 100644
--- a/crypto/bf/bf_opts.c
+++ b/crypto/bf/bf_opts.c
@@ -143,12 +143,7 @@ struct tms {
#define BUFSIZE ((long)1024)
long run=0;
-#ifndef NOPROTO
double Time_F(int s);
-#else
-double Time_F();
-#endif
-
#ifdef SIGALRM
#if defined(__STDC__) || defined(sgi)
#define SIGRETTYPE void
@@ -156,12 +151,7 @@ double Time_F();
#define SIGRETTYPE int
#endif
-#ifndef NOPROTO
SIGRETTYPE sig_done(int sig);
-#else
-SIGRETTYPE sig_done();
-#endif
-
SIGRETTYPE sig_done(int sig)
{
signal(SIGALRM,sig_done);
diff --git a/crypto/bf/bfspeed.c b/crypto/bf/bfspeed.c
index 8e770a9f83..bca36e5a3b 100644
--- a/crypto/bf/bfspeed.c
+++ b/crypto/bf/bfspeed.c
@@ -116,12 +116,7 @@ struct tms {
#define BUFSIZE ((long)1024)
long run=0;
-#ifndef NOPROTO
double Time_F(int s);
-#else
-double Time_F();
-#endif
-
#ifdef SIGALRM
#if defined(__STDC__) || defined(sgi) || defined(_AIX)
#define SIGRETTYPE void
@@ -129,12 +124,7 @@ double Time_F();
#define SIGRETTYPE int
#endif
-#ifndef NOPROTO
SIGRETTYPE sig_done(int sig);
-#else
-SIGRETTYPE sig_done();
-#endif
-
SIGRETTYPE sig_done(int sig)
{
signal(SIGALRM,sig_done);
diff --git a/crypto/bf/bftest.c b/crypto/bf/bftest.c
index df4c211d9d..091c8081a9 100644
--- a/crypto/bf/bftest.c
+++ b/crypto/bf/bftest.c
@@ -252,14 +252,8 @@ unsigned char key_out[KEY_TEST_NUM][8]={
{0x05,0x04,0x4B,0x62,0xFA,0x52,0xD0,0x80},
};
-#ifndef NOPROTO
static int test(void );
static int print_test_data(void );
-#else
-static int test();
-static int print_test_data();
-#endif
-
int main(int argc, char *argv[])
{
int ret;
diff --git a/crypto/bf/blowfish.h b/crypto/bf/blowfish.h
index 4e5698f3d7..005d0ed7b6 100644
--- a/crypto/bf/blowfish.h
+++ b/crypto/bf/blowfish.h
@@ -81,7 +81,6 @@ typedef struct bf_key_st
BF_LONG S[4*256];
} BF_KEY;
-#ifndef NOPROTO
void BF_set_key(BF_KEY *key, int len, unsigned char *data);
void BF_ecb_encrypt(unsigned char *in,unsigned char *out,BF_KEY *key,
@@ -96,19 +95,6 @@ void BF_ofb64_encrypt(unsigned char *in, unsigned char *out, long length,
BF_KEY *schedule, unsigned char *ivec, int *num);
const char *BF_options(void);
-#else
-
-void BF_set_key();
-void BF_ecb_encrypt();
-void BF_encrypt();
-void BF_decrypt();
-void BF_cbc_encrypt();
-void BF_cfb64_encrypt();
-void BF_ofb64_encrypt();
-const char *BF_options();
-
-#endif
-
#ifdef __cplusplus
}
#endif