From 45211c563fb12aca50771b3400b833da4095c6de Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 31 Aug 2019 09:30:43 +0200 Subject: [PATCH] doc/man3/OSSL_PARAM.pod: add details about multiple elements with same key Usually, each element in an OSSL_PARAM array will have a unique key. However, there may be some rare cases when a responder will handle multiple elements with the same key. This adds a short passage explaining this case. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/9741) --- doc/man3/OSSL_PARAM.pod | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/man3/OSSL_PARAM.pod b/doc/man3/OSSL_PARAM.pod index d0725e063e..361028fa00 100644 --- a/doc/man3/OSSL_PARAM.pod +++ b/doc/man3/OSSL_PARAM.pod @@ -60,6 +60,10 @@ I. =back +Normally, the order of the an B array is not relevant. +However, if the I can handle multiple elements with the +same key, those elements must be handled in the order they are in. + =head2 B fields =over 4 -- 2.25.1