Lines Matching +full:well +full:- +full:known

5 ----------------
13 operation algorithms as well, but it's done in a way that can't be supported
18 [Background / tl;dr](#background-tldr) at the end of this design.
21 -----------------------------------------------------------------
23 We already have known parameter keys:
25 - "algor_id_param", also known as the macro `OSSL_CIPHER_PARAM_ALGORITHM_ID_PARAMS`.
30 - "algorithm-id", also known as the macro `OSSL_SIGNATURE_PARAM_ALGORITHM_ID`.
34 1. Adding a parameter key "algorithm-id-params", to replace "algor_id_param",
36 2. Making both "algorithm-id" and "algorithm-id-params" generically available,
37 rather than only tied to `EVP_SIGNATURE` ("algorithm-id") or `EVP_CIPHER`
41 operations, with the value of the AlgorithmIdentifier as well as its
53 - `doc/man7/provider-asym_cipher.pod`
54 - `doc/man7/provider-cipher.pod`
55 - `doc/man7/provider-digest.pod`
56 - `doc/man7/provider-kdf.pod`
57 - `doc/man7/provider-kem.pod`
58 - `doc/man7/provider-keyexch.pod`
59 - `doc/man7/provider-mac.pod`
60 - `doc/man7/provider-signature.pod`
66 We may arguably want to consider `doc/man7/provider-keymgmt.pod` too, but
73 ----------------------
110 -----------------------------
118 -------------------
125 -----
127 -----
130 ------------------
138 - In some cases, they were passed as part of the lower level key structure
139 (for example, the `RSA` structure can also carry RSA-PSS parameters).
140 - In the `EVP_CIPHER` case, there is functionality to pass the parameter
142 - For asymmetric key operations, PKCS#7 and CMS support was added as
158 - [DSA](https://www.rfc-editor.org/rfc/rfc3370#section-3.1) signatures
160 - [RC2 key wrap](https://www.rfc-editor.org/rfc/rfc3370#section-4.3.2)
161 - [PBKDF2](https://www.rfc-editor.org/rfc/rfc3370#section-4.4.1)
162 - [3DES-CBC](https://www.rfc-editor.org/rfc/rfc3370#section-5.1)
163 - [RC2-CBC](https://www.rfc-editor.org/rfc/rfc3370#section-5.2)
165 - [GOST 28147-89](https://www.rfc-editor.org/rfc/rfc4490.html#section-5.1)
167 - [RSA-OAEP](https://www.rfc-editor.org/rfc/rfc8017#appendix-A.2.1)
168 - [RSA-PSS](https://www.rfc-editor.org/rfc/rfc8017#appendix-A.2.3)
170 - [XOR-MD5](https://www.rfc-editor.org/rfc/rfc6210.html) is experimental,