diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/des/des_fcrypt.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/des/des_fcrypt.c b/src/lib/libcrypto/des/des_fcrypt.c index 877ffdbc83..4d06a79794 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.1 2024/08/31 15:56:09 jsing Exp $ */ | 1 | /* $OpenBSD: des_fcrypt.c,v 1.2 2024/08/31 16:04:22 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 | * |
@@ -75,8 +75,6 @@ | |||
75 | #include "des_local.h" | 75 | #include "des_local.h" |
76 | #undef DES_FCRYPT | 76 | #undef DES_FCRYPT |
77 | 77 | ||
78 | #ifndef OPENBSD_DES_ASM | ||
79 | |||
80 | #undef PERM_OP | 78 | #undef PERM_OP |
81 | #define PERM_OP(a,b,t,n,m) ((t)=((((a)>>(n))^(b))&(m)), \ | 79 | #define PERM_OP(a,b,t,n,m) ((t)=((((a)>>(n))^(b))&(m)), \ |
82 | (b)^=(t), \ | 80 | (b)^=(t), \ |
@@ -149,8 +147,6 @@ fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0, | |||
149 | out[1] = l; | 147 | out[1] = l; |
150 | } | 148 | } |
151 | 149 | ||
152 | #endif /* OPENBSD_DES_ASM */ | ||
153 | |||
154 | /* Added more values to handle illegal salt values the way normal | 150 | /* Added more values to handle illegal salt values the way normal |
155 | * crypt() implementations do. The patch was sent by | 151 | * crypt() implementations do. The patch was sent by |
156 | * Bjorn Gronvall <bg@sics.se> | 152 | * Bjorn Gronvall <bg@sics.se> |