Home
last modified time | relevance | path

Searched refs:MAX_INPUT_SIZE (Results 1 – 5 of 5) sorted by relevance

/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/
DGCMBlockCipher.java32 private static final long MAX_INPUT_SIZE = 68719476704L; field in GCMBlockCipher
268 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processAADByte()
269 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADByte()
287 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processAADBytes()
288 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADBytes()
331 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processByte()
332 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processByte()
359 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processBytes()
360 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processBytes()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
DGCMBlockCipher.java30 private static final long MAX_INPUT_SIZE = 68719476704L; field in GCMBlockCipher
266 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processAADByte()
267 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADByte()
285 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processAADBytes()
286 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADBytes()
329 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processByte()
330 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processByte()
357 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processBytes()
358 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processBytes()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/modes/
DGCMBlockCipher.java32 private static final long MAX_INPUT_SIZE = 68719476704L; field in GCMBlockCipher
268 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processAADByte()
269 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADByte()
287 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processAADBytes()
288 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADBytes()
331 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processByte()
332 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processByte()
359 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processBytes()
360 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processBytes()
/external/harfbuzz_ng/test/fuzzing/
Dhb-set-fuzzer.cc14 #define MAX_INPUT_SIZE 20000 macro
46 if (size > MAX_INPUT_SIZE) in LLVMFuzzerTestOneInput()
/external/oss-fuzz/projects/pffft/
Dgenerate_seed_corpus.py9 MAX_INPUT_SIZE = int(1e6) variable
37 N = [n for n in range(MAX_INPUT_SIZE) if IsValidSize(n)]