diff options
author | tb <> | 2023-12-20 06:22:27 +0000 |
---|---|---|
committer | tb <> | 2023-12-20 06:22:27 +0000 |
commit | b1a87d3488f8cb56f4a1453e4ac6f8c2170da70b (patch) | |
tree | d754e0901ae0cbbc90c08289831b6997a0710ea3 /src | |
parent | 5dc95088574e1b1728bad15b9ccd124fa087af3b (diff) | |
download | openbsd-b1a87d3488f8cb56f4a1453e4ac6f8c2170da70b.tar.gz openbsd-b1a87d3488f8cb56f4a1453e4ac6f8c2170da70b.tar.bz2 openbsd-b1a87d3488f8cb56f4a1453e4ac6f8c2170da70b.zip |
Remove commented-out code
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/des/set_key.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libcrypto/des/set_key.c b/src/lib/libcrypto/des/set_key.c index 91116c4d16..c1fd02846f 100644 --- a/src/lib/libcrypto/des/set_key.c +++ b/src/lib/libcrypto/des/set_key.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: set_key.c,v 1.23 2023/07/08 07:34:34 jsing Exp $ */ | 1 | /* $OpenBSD: set_key.c,v 1.24 2023/12/20 06:22:27 tb 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 | * |
@@ -398,10 +398,3 @@ DES_key_sched(const_DES_cblock *key, DES_key_schedule *schedule) | |||
398 | { | 398 | { |
399 | return (DES_set_key(key, schedule)); | 399 | return (DES_set_key(key, schedule)); |
400 | } | 400 | } |
401 | /* | ||
402 | #undef des_fixup_key_parity | ||
403 | void des_fixup_key_parity(des_cblock *key) | ||
404 | { | ||
405 | des_set_odd_parity(key); | ||
406 | } | ||
407 | */ | ||