summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/aes
diff options
context:
space:
mode:
authortb <>2023-07-31 05:04:06 +0000
committertb <>2023-07-31 05:04:06 +0000
commitdc6989fcceeb8a299b2364670053a568ea83d2ff (patch)
treede34abc6e618c5cff9f84c79d2cebc3f90d1c75b /src/lib/libcrypto/aes
parentac284d0a8a14d1a793bb65dfb2d65c8a87966bb0 (diff)
downloadopenbsd-dc6989fcceeb8a299b2364670053a568ea83d2ff.tar.gz
openbsd-dc6989fcceeb8a299b2364670053a568ea83d2ff.tar.bz2
openbsd-dc6989fcceeb8a299b2364670053a568ea83d2ff.zip
Remove more *_options() stuff
The public symbols were removed. Some prototypes and in the case of DES even the implementation remained. ok jsing
Diffstat (limited to 'src/lib/libcrypto/aes')
-rw-r--r--src/lib/libcrypto/aes/aes.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/aes/aes.h b/src/lib/libcrypto/aes/aes.h
index c904485d8f..702873e11c 100644
--- a/src/lib/libcrypto/aes/aes.h
+++ b/src/lib/libcrypto/aes/aes.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: aes.h,v 1.14 2014/07/09 09:10:07 miod Exp $ */ 1/* $OpenBSD: aes.h,v 1.15 2023/07/31 05:04:06 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -79,8 +79,6 @@ struct aes_key_st {
79}; 79};
80typedef struct aes_key_st AES_KEY; 80typedef struct aes_key_st AES_KEY;
81 81
82const char *AES_options(void);
83
84int AES_set_encrypt_key(const unsigned char *userKey, const int bits, 82int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
85 AES_KEY *key); 83 AES_KEY *key);
86int AES_set_decrypt_key(const unsigned char *userKey, const int bits, 84int AES_set_decrypt_key(const unsigned char *userKey, const int bits,