From e27bf726468a8e03ecea3001f386af874ccef883 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Fri, 27 Aug 2021 20:54:09 +0530 Subject: [PATCH] PBKDF2 derive bits should throw OperationError when length is zero --- spec/Overview.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/Overview.html b/spec/Overview.html index ed84e43..35bc40d 100644 --- a/spec/Overview.html +++ b/spec/Overview.html @@ -14359,7 +14359,7 @@

Operations

  1. - If length is null or is not a multiple of 8, then [= exception/throw =] an {{OperationError}}. + If length is null or zero, or is not a multiple of 8, then [= exception/throw =] an {{OperationError}}.

  2. @@ -14595,7 +14595,7 @@

    Operations

    1. - If length is null or is not a multiple of 8, then [= exception/throw =] an {{OperationError}}. + If length is null or zero, or is not a multiple of 8, then [= exception/throw =] an {{OperationError}}.