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
commit2ba777b8828dfdfc3a7a4c7048e55ea4cb4b4b66 (patch)
treede34abc6e618c5cff9f84c79d2cebc3f90d1c75b /src/lib/libcrypto/aes
parent991a4fd1cbb1ae03ca9dd7670eebac91d5e52c07 (diff)
downloadopenbsd-2ba777b8828dfdfc3a7a4c7048e55ea4cb4b4b66.tar.gz
openbsd-2ba777b8828dfdfc3a7a4c7048e55ea4cb4b4b66.tar.bz2
openbsd-2ba777b8828dfdfc3a7a4c7048e55ea4cb4b4b66.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,