/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/testmode/ |
H A D | DeterministicSecureRandomTest.java | 41 DeterministicSecureRandom secureRandom = new DeterministicSecureRandom(); in testDeterministicSecureRandomNonRepeating() local 45 secureRandom.generateSeed(BYTE_ARRAY_LEN), in testDeterministicSecureRandomNonRepeating() 46 secureRandom.generateSeed(BYTE_ARRAY_LEN))); in testDeterministicSecureRandomNonRepeating() 47 assertNotEquals(secureRandom.nextLong(), secureRandom.nextLong()); in testDeterministicSecureRandomNonRepeating() 51 secureRandom.nextBytes(randomBytesOne); in testDeterministicSecureRandomNonRepeating() 52 secureRandom.nextBytes(randomBytesTwo); in testDeterministicSecureRandomNonRepeating()
|
/aosp12/frameworks/base/packages/BackupEncryption/src/com/android/server/backup/encryption/tasks/ |
H A D | EncryptedFullBackupTask.java | 83 SecureRandom secureRandom, in newInstance() argument 91 secureRandom, in newInstance() 101 secureRandom, in newInstance() 122 SecureRandom secureRandom) { in EncryptedFullBackupTask() argument 128 mSecureRandom = secureRandom; in EncryptedFullBackupTask()
|
H A D | EncryptedKvBackupTask.java | 72 SecureRandom secureRandom, in newInstance() argument 94 secureRandom, in newInstance() 106 cryptoBackupServer, secureRandom, packageName, backupEncrypter), in newInstance()
|
H A D | EncryptedFullBackupDataProcessor.java | 67 SecureRandom secureRandom, in EncryptedFullBackupDataProcessor() argument 73 mSecureRandom = Objects.requireNonNull(secureRandom); in EncryptedFullBackupDataProcessor()
|
H A D | EncryptedBackupTask.java | 78 SecureRandom secureRandom, in EncryptedBackupTask() argument 82 mSecureRandom = secureRandom; in EncryptedBackupTask()
|
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/crypto/ |
H A D | TlsSessionFactory.java | 37 public TlsSession newInstance(X509Certificate serverCaCert, SecureRandom secureRandom) in newInstance() argument 39 return new TlsSession(serverCaCert, secureRandom); in newInstance()
|
H A D | TlsSession.java | 116 TlsSession(X509Certificate serverCaCert, SecureRandom secureRandom) in TlsSession() argument 118 mSecureRandom = secureRandom; in TlsSession() 121 mSslContext.init(null, mTrustManagers, secureRandom); in TlsSession() 135 SecureRandom secureRandom) { in TlsSession() argument 138 mSecureRandom = secureRandom; in TlsSession()
|
/aosp12/frameworks/base/packages/BackupEncryption/src/com/android/server/backup/encryption/keys/ |
H A D | TertiaryKeyGenerator.java | 33 public TertiaryKeyGenerator(SecureRandom secureRandom) { in TertiaryKeyGenerator() argument 36 mKeyGenerator.init(KEY_SIZE_BITS, secureRandom); in TertiaryKeyGenerator()
|
H A D | RecoverableKeyStoreSecondaryKeyManager.java | 57 RecoveryController recoveryController, SecureRandom secureRandom) { in RecoverableKeyStoreSecondaryKeyManager() argument 59 mSecureRandom = secureRandom; in RecoverableKeyStoreSecondaryKeyManager()
|
H A D | TertiaryKeyManager.java | 57 SecureRandom secureRandom, in TertiaryKeyManager() argument 63 mKeyGenerator = new TertiaryKeyGenerator(secureRandom); in TertiaryKeyManager()
|
/aosp12/frameworks/base/packages/BackupEncryption/src/com/android/server/backup/encryption/chunking/ |
H A D | ChunkEncryptor.java | 46 public ChunkEncryptor(SecretKey secretKey, SecureRandom secureRandom) { in ChunkEncryptor() argument 48 this.mSecureRandom = secureRandom; in ChunkEncryptor()
|
/aosp12/frameworks/base/core/java/android/security/keystore/recovery/ |
H A D | RecoverySession.java | 73 SecureRandom secureRandom = new SecureRandom(); in newSessionId() local 75 secureRandom.nextBytes(sessionId); in newSessionId()
|
/aosp12/frameworks/base/services/backup/java/com/android/server/backup/ |
H A D | BackupPasswordManager.java | 71 BackupPasswordManager(Context context, File baseStateDir, SecureRandom secureRandom) { in BackupPasswordManager() argument 73 mRng = secureRandom; in BackupPasswordManager()
|
/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/ |
H A D | KeySyncUtils.java | 192 SecureRandom secureRandom = new SecureRandom(); in generateKeyClaimant() local 194 secureRandom.nextBytes(key); in generateKeyClaimant()
|
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/ |
H A D | EapSimMethodStateMachine.java | 100 SecureRandom secureRandom) { in EapSimMethodStateMachine() argument 105 secureRandom, in EapSimMethodStateMachine() 114 SecureRandom secureRandom, in EapSimMethodStateMachine() argument 125 this.mSecureRandom = secureRandom; in EapSimMethodStateMachine()
|
H A D | EapMsChapV2MethodStateMachine.java | 197 EapMsChapV2Config eapMsChapV2Config, SecureRandom secureRandom) { in EapMsChapV2MethodStateMachine() argument 198 this(eapMsChapV2Config, secureRandom, new EapMsChapV2TypeDataDecoder()); in EapMsChapV2MethodStateMachine() 204 SecureRandom secureRandom, in EapMsChapV2MethodStateMachine() argument 207 this.mSecureRandom = secureRandom; in EapMsChapV2MethodStateMachine()
|
H A D | EapTtlsMethodStateMachine.java | 103 SecureRandom secureRandom) { in EapTtlsMethodStateMachine() argument 107 secureRandom, in EapTtlsMethodStateMachine() 117 SecureRandom secureRandom, in EapTtlsMethodStateMachine() argument 124 mSecureRandom = secureRandom; in EapTtlsMethodStateMachine()
|
H A D | EapStateMachine.java | 84 @NonNull SecureRandom secureRandom) { in EapStateMachine() argument 87 this.mSecureRandom = secureRandom; in EapStateMachine()
|
/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/ |
H A D | SyntheticPasswordManager.java | 257 byte[] escrowSplit0 = secureRandom(SYNTHETIC_PASSWORD_LENGTH); in create() 258 byte[] escrowSplit1 = secureRandom(SYNTHETIC_PASSWORD_LENGTH); in create() 322 result.salt = secureRandom(PASSWORD_SALT_LENGTH); in create() 451 value = secureRandom(mWeaverConfig.valueSize); in weaverEnroll() 890 final byte[] secdiscardable = secureRandom(SECDISCARDABLE_LENGTH); in createTokenBasedSyntheticPassword() 892 tokenData.weaverSecret = secureRandom(mWeaverConfig.valueSize); in createTokenBasedSyntheticPassword() 1275 byte[] data = secureRandom(SECDISCARDABLE_LENGTH); in createSecdiscardable() 1357 protected static byte[] secureRandom(int length) { in secureRandom() method in SyntheticPasswordManager
|
/aosp12/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/backup/encryption/tasks/ |
H A D | EncryptedBackupTaskTest.java | 126 SecureRandom secureRandom = new SecureRandom(); in setUp() local 127 mTertiaryKey = new TertiaryKeyGenerator(secureRandom).generate(); in setUp() 136 mCryptoBackupServer, secureRandom, TEST_PACKAGE_NAME, mBackupEncrypter); in setUp()
|
H A D | EncryptedFullBackupDataProcessorTest.java | 364 SecureRandom secureRandom) { in __constructor__() argument
|
/aosp12/frameworks/base/core/tests/coretests/src/android/net/ |
H A D | SSLSessionCacheTest.java | 72 SecureRandom secureRandom) throws KeyManagementException { in engineInit() argument
|
/aosp12/packages/apps/Car/DebuggingRestrictionController/libs/ |
H A D | httpcore-4.4.13.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |
H A D | httpclient-4.5.12.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |
/aosp12/packages/apps/Messaging/build/gcheckstyle/ |
H A D | google-style-checker_deploy.jar | META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com ... |