diff options
author | jsing <> | 2024-08-31 16:22:18 +0000 |
---|---|---|
committer | jsing <> | 2024-08-31 16:22:18 +0000 |
commit | 76ec570934ef171ad63231f6318874c7eadb44c3 (patch) | |
tree | 5f8eef543d8d1828cd8b4b28e7aedb9b68451e21 /src/lib/libcrypto/des/des_fcrypt.c | |
parent | 70eebda78549a323c4608f8edfe9bd332ad13111 (diff) | |
download | openbsd-76ec570934ef171ad63231f6318874c7eadb44c3.tar.gz openbsd-76ec570934ef171ad63231f6318874c7eadb44c3.tar.bz2 openbsd-76ec570934ef171ad63231f6318874c7eadb44c3.zip |
Make fcrypt_body() static and remove prototype.
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/des/des_fcrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/des/des_fcrypt.c b/src/lib/libcrypto/des/des_fcrypt.c index 049040b184..b33b1240c2 100644 --- a/src/lib/libcrypto/des/des_fcrypt.c +++ b/src/lib/libcrypto/des/des_fcrypt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: des_fcrypt.c,v 1.3 2024/08/31 16:17:13 jsing Exp $ */ | 1 | /* $OpenBSD: des_fcrypt.c,v 1.4 2024/08/31 16:22:18 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -84,7 +84,7 @@ | |||
84 | #define HPERM_OP(a,t,n,m) ((t)=((((a)<<(16-(n)))^(a))&(m)), \ | 84 | #define HPERM_OP(a,t,n,m) ((t)=((((a)<<(16-(n)))^(a))&(m)), \ |
85 | (a)=(a)^(t)^(t>>(16-(n)))) \ | 85 | (a)=(a)^(t)^(t>>(16-(n)))) \ |
86 | 86 | ||
87 | void | 87 | static void |
88 | fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0, | 88 | fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0, |
89 | DES_LONG Eswap1) | 89 | DES_LONG Eswap1) |
90 | { | 90 | { |