fix semicolon

This commit is contained in:
Paul Vié 2025-04-04 18:40:27 +02:00
parent 6f4cbd8688
commit e00a636fc0

View file

@ -135,7 +135,7 @@ The following algorithms will be used based on the size of the key:
if (noPadding) { if (noPadding) {
cipher.mode.pad = function(output, options) { cipher.mode.pad = function(output, options) {
return true; return true;
} };
} }
cipher.update(forge.util.createBuffer(input)); cipher.update(forge.util.createBuffer(input));
cipher.finish(); cipher.finish();