Remove buffer check that fails with Numpy arrays

This commit is contained in:
2023-11-30 22:55:38 +00:00
parent 160eee95b1
commit e9fa61177b
-2
View File
@@ -57,8 +57,6 @@ def _processKeys(key, iv):
def _processBuffer(out):
if not out:
raise ValueError("Output buffer of non-zero size is required")
try:
outlen = out.nbytes
except AttributeError: