Home
last modified time | relevance | path

Searched refs:modulus (Results 1 – 4 of 4) sorted by relevance

/tools/security/fuzzing/system_fuzzers/libcrypto_utils/
Dlibcrypto_utils_fuzzer.cpp43 uint8_t* modulus = (uint8_t*)s.c_str(); in LLVMFuzzerTestOneInput() local
44 memcpy(buffer+sizeof(uint32_t)*2, modulus, in LLVMFuzzerTestOneInput()
/tools/apksig/src/main/java/com/android/apksig/internal/x509/
DRSAPublicKey.java31 public BigInteger modulus; field in RSAPublicKey
/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DApkSigningBlockUtils.java689 if (rsaPublicKey.modulus.compareTo(BigInteger.ZERO) < 0) { in encodePublicKey()
693 byte[] encodedModulus = rsaPublicKey.modulus.toByteArray(); in encodePublicKey()
698 rsaPublicKey.modulus = new BigInteger(reencodedModulus); in encodePublicKey()
/tools/apksig/src/test/java/com/android/apksig/
DApkSignerTest.java1179 v2PublicKey.modulus.compareTo(BigInteger.ZERO) > 0); in testPublicKeyHasPositiveModulusAfterSigning()
1185 v3PublicKey.modulus.compareTo(BigInteger.ZERO) > 0); in testPublicKeyHasPositiveModulusAfterSigning()