diff options
author | tb <> | 2022-01-14 08:34:39 +0000 |
---|---|---|
committer | tb <> | 2022-01-14 08:34:39 +0000 |
commit | 385790bbe258a0de5b6842a60a07a834e590fe1a (patch) | |
tree | d1055b55981f9ad17a7c3eba698619cd0ce84aed /src/lib/libcrypto/ossl_typ.h | |
parent | 57442b0028fb09287793f279ee57ebb38e9ab954 (diff) | |
download | openbsd-385790bbe258a0de5b6842a60a07a834e590fe1a.tar.gz openbsd-385790bbe258a0de5b6842a60a07a834e590fe1a.tar.bz2 openbsd-385790bbe258a0de5b6842a60a07a834e590fe1a.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 | ||