diff options
author | tb <> | 2023-12-20 06:22:27 +0000 |
---|---|---|
committer | tb <> | 2023-12-20 06:22:27 +0000 |
commit | c5e25d4ccdb27c5439de7f15ac8c6d894c8cdf3b (patch) | |
tree | d754e0901ae0cbbc90c08289831b6997a0710ea3 /src | |
parent | dce6821928859539be40a9a42b4c7cc1a7c9bb46 (diff) | |
download | openbsd-c5e25d4ccdb27c5439de7f15ac8c6d894c8cdf3b.tar.gz openbsd-c5e25d4ccdb27c5439de7f15ac8c6d894c8cdf3b.tar.bz2 openbsd-c5e25d4ccdb27c5439de7f15ac8c6d894c8cdf3b.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 | */ | ||