From edbab91bf81eeafecca44697c0a25242a1b5f00f Mon Sep 17 00:00:00 2001 From: Yanray Wang Date: Mon, 21 Aug 2023 15:17:43 +0800 Subject: [PATCH] pkwrite.c: write ChangeLog accurately The heap memory is used for both RSA and EC keys. So removing `RSA` in the ChangeLog. Signed-off-by: Yanray Wang --- ChangeLog.d/pkwrite-pem-use-heap.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog.d/pkwrite-pem-use-heap.txt b/ChangeLog.d/pkwrite-pem-use-heap.txt index d2e7129ec4..11db7b6b06 100644 --- a/ChangeLog.d/pkwrite-pem-use-heap.txt +++ b/ChangeLog.d/pkwrite-pem-use-heap.txt @@ -1,4 +1,4 @@ Changes - * Use heap memory to allocate DER encoded RSA public/private key. + * Use heap memory to allocate DER encoded public/private key. This reduces stack usage significantly for writing a public/private key to a PEM string.