diff options
author | tb <> | 2022-01-14 08:34:39 +0000 |
---|---|---|
committer | tb <> | 2022-01-14 08:34:39 +0000 |
commit | 0264d15b2db8e92add54fc0b024d5430c53683d3 (patch) | |
tree | d1055b55981f9ad17a7c3eba698619cd0ce84aed /src/lib/libcrypto/ossl_typ.h | |
parent | 3acb0bae7f358a317f5ebe092026edc36a05d43b (diff) | |
download | openbsd-0264d15b2db8e92add54fc0b024d5430c53683d3.tar.gz openbsd-0264d15b2db8e92add54fc0b024d5430c53683d3.tar.bz2 openbsd-0264d15b2db8e92add54fc0b024d5430c53683d3.zip |
Make RSA, RSA_PSS_PARAMS and RSA_METHOD opaque
Move the struct internals to rsa_locl.h and provide a missing
typedef in ossl_typ.h.
ok inoguchi jsing
Diffstat (limited to 'src/lib/libcrypto/ossl_typ.h')
-rw-r--r-- | src/lib/libcrypto/ossl_typ.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ossl_typ.h b/src/lib/libcrypto/ossl_typ.h index 161bf86a3e..4f94c4032e 100644 --- a/src/lib/libcrypto/ossl_typ.h +++ b/src/lib/libcrypto/ossl_typ.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ossl_typ.h,v 1.19 2022/01/14 08:21:12 tb Exp $ */ | 1 | /* $OpenBSD: ossl_typ.h,v 1.20 2022/01/14 08:34:39 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -121,6 +121,7 @@ typedef struct dsa_method DSA_METHOD; | |||
121 | 121 | ||
122 | typedef struct rsa_st RSA; | 122 | typedef struct rsa_st RSA; |
123 | typedef struct rsa_meth_st RSA_METHOD; | 123 | typedef struct rsa_meth_st RSA_METHOD; |
124 | typedef struct rsa_pss_params_st RSA_PSS_PARAMS; | ||
124 | 125 | ||
125 | typedef struct rand_meth_st RAND_METHOD; | 126 | typedef struct rand_meth_st RAND_METHOD; |
126 | 127 | ||