Home
last modified time | relevance | path

Searched refs:keyBytes (Results 1 – 20 of 20) sorted by relevance

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/
DIkeMacPrf.java105 public byte[] signBytes(byte[] keyBytes, byte[] dataToSign) { in signBytes() argument
108 keyBytes = modifyAesXCbcKeyIfNeeded(keyBytes); in signBytes()
109 return new AesXCbcImpl().mac(keyBytes, dataToSign, false /*needTruncation*/); in signBytes()
114 keyBytes = modifyAesCmacKeyIfNeeded(keyBytes); in signBytes()
117 return super.signBytes(keyBytes, dataToSign); in signBytes()
120 private byte[] modifyAesXCbcKeyIfNeeded(byte[] keyBytes) throws GeneralSecurityException { in modifyAesXCbcKeyIfNeeded() argument
133 if (keyBytes.length < 16) { in modifyAesXCbcKeyIfNeeded()
134 keyBytes = Arrays.copyOf(keyBytes, 16); in modifyAesXCbcKeyIfNeeded()
135 } else if (keyBytes.length > 16) { in modifyAesXCbcKeyIfNeeded()
136 keyBytes = new AesXCbcImpl().mac(new byte[16], keyBytes, false /*needTruncation*/); in modifyAesXCbcKeyIfNeeded()
[all …]
DIkeNormalModeCipher.java62 private byte[] doCipherAction(byte[] data, byte[] keyBytes, byte[] ivBytes, int opmode) in doCipherAction() argument
64 if (getKeyLength() != keyBytes.length) { in doCipherAction()
69 + keyBytes.length); in doCipherAction()
72 byte[] secretKeyBytes = Arrays.copyOfRange(keyBytes, 0, keyBytes.length - mSaltLen); in doCipherAction()
73 byte[] salt = Arrays.copyOfRange(keyBytes, secretKeyBytes.length, keyBytes.length); in doCipherAction()
109 public byte[] encrypt(byte[] paddedData, byte[] keyBytes, byte[] ivBytes) { in encrypt() argument
111 return doCipherAction(paddedData, keyBytes, ivBytes, Cipher.ENCRYPT_MODE); in encrypt()
127 public byte[] decrypt(byte[] encryptedData, byte[] keyBytes, byte[] ivBytes) in decrypt() argument
129 return doCipherAction(encryptedData, keyBytes, ivBytes, Cipher.DECRYPT_MODE); in decrypt()
DIkeMacIntegrity.java133 public byte[] signBytes(byte[] keyBytes, byte[] dataToSign) { in signBytes() argument
136 return new AesXCbcImpl().mac(keyBytes, dataToSign, true /*needTruncation*/); in signBytes()
141 return super.signBytes(keyBytes, dataToSign); in signBytes()
163 public byte[] generateChecksum(byte[] keyBytes, byte[] dataToAuthenticate) { in generateChecksum() argument
164 if (getKeyLength() != keyBytes.length) { in generateChecksum()
169 + keyBytes.length); in generateChecksum()
172 byte[] signedBytes = signBytes(keyBytes, dataToAuthenticate); in generateChecksum()
DIkeCombinedModeCipher.java87 byte[] data, byte[] additionalAuthData, byte[] keyBytes, byte[] ivBytes, int opmode) in doCipherAction() argument
92 ByteBuffer secretKeyAndSaltBuffer = ByteBuffer.wrap(keyBytes); in doCipherAction()
93 byte[] secretKeyBytes = new byte[keyBytes.length - mSaltLen]; in doCipherAction()
157 byte[] paddedData, byte[] additionalAuthData, byte[] keyBytes, byte[] ivBytes) { in encrypt() argument
160 paddedData, additionalAuthData, keyBytes, ivBytes, Cipher.ENCRYPT_MODE); in encrypt()
179 byte[] keyBytes, in decrypt() argument
187 keyBytes, in decrypt()
DAesXCbcImpl.java57 public byte[] mac(byte[] keyBytes, byte[] dataToSign, boolean needTruncation) { in mac() argument
71 byte[] key1 = encryptAesBlock(keyBytes, HexDump.hexStringToByteArray(KEY1_SEED_HEX_STRING)); in mac()
72 byte[] key2 = encryptAesBlock(keyBytes, HexDump.hexStringToByteArray(KEY2_SEED_HEX_STRING)); in mac()
73 byte[] key3 = encryptAesBlock(keyBytes, HexDump.hexStringToByteArray(KEY3_SEED_HEX_STRING)); in mac()
139 private byte[] encryptAesBlock(byte[] keyBytes, byte[] dataToEncrypt) { in encryptAesBlock() argument
147 Cipher.ENCRYPT_MODE, new SecretKeySpec(keyBytes, mCipher.getAlgorithm()), iv); in encryptAesBlock()
DIkeMac.java66 public byte[] signBytes(byte[] keyBytes, byte[] dataToSign) { in signBytes() argument
69 SecretKeySpec secretKey = new SecretKeySpec(keyBytes, getAlgorithmName()); in signBytes()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/jni/java/com/android/adservices/ohttp/
DOhttpJniWrapperTest.java89 byte[] keyBytes = BaseEncoding.base16().lowerCase().decode(SERVER_PUBLIC_KEY); in hpkeCtxSetupSenderWithSeed_returnsCorrectSharedSecret()
93 evpCtxSender, kem, kdf, aead, keyBytes, recipientKeyInfoBytes, seedBytes); in hpkeCtxSetupSenderWithSeed_returnsCorrectSharedSecret()
111 byte[] keyBytes = BaseEncoding.base16().lowerCase().decode(SERVER_PUBLIC_KEY); in hpkeCtxSetupSenderWithSeed_returnsCorrectSharedSecret_withServerAuctionMediaTypeChange()
115 evpCtxSender, kem, kdf, aead, keyBytes, recipientKeyInfoBytes, seedBytes); in hpkeCtxSetupSenderWithSeed_returnsCorrectSharedSecret_withServerAuctionMediaTypeChange()
131 byte[] keyBytes = BaseEncoding.base16().lowerCase().decode(SERVER_PUBLIC_KEY); in hpkeEncrypt_returnsCorrectResponse()
136 evpCtxSender, kem, kdf, aead, keyBytes, recipientKeyInfoBytes, seedBytes); in hpkeEncrypt_returnsCorrectResponse()
143 keyBytes, in hpkeEncrypt_returnsCorrectResponse()
169 byte[] keyBytes = BaseEncoding.base16().lowerCase().decode(SERVER_PUBLIC_KEY); in hpkeEncrypt_returnsCorrectResponse_withServerAuctionMediaTypeChange()
174 evpCtxSender, kem, kdf, aead, keyBytes, recipientKeyInfoBytes, seedBytes); in hpkeEncrypt_returnsCorrectResponse_withServerAuctionMediaTypeChange()
181 keyBytes, in hpkeEncrypt_returnsCorrectResponse_withServerAuctionMediaTypeChange()
[all …]
DObliviousHttpGatewayTest.java65 byte[] keyBytes = BaseEncoding.base16().lowerCase().decode(SERVER_PRIVATE_KEY); in decrypt_canDecryptPayloadsEncryptedByOhttpClient()
68 OhttpGatewayPrivateKey.create(keyBytes), request.serialize()); in decrypt_canDecryptPayloadsEncryptedByOhttpClient()
91 byte[] keyBytes = BaseEncoding.base16().lowerCase().decode(SERVER_PRIVATE_KEY); in decrypt_canDecryptPayloadsEncryptedByOhttpClient_withServerAuctionMediaTypeChange()
94 OhttpGatewayPrivateKey.create(keyBytes), request.serialize()); in decrypt_canDecryptPayloadsEncryptedByOhttpClient_withServerAuctionMediaTypeChange()
116 byte[] keyBytes = BaseEncoding.base16().lowerCase().decode(SERVER_PRIVATE_KEY); in encrypt_canBeDecryptedByOhttpClient()
119 OhttpGatewayPrivateKey.create(keyBytes), in encrypt_canBeDecryptedByOhttpClient()
148 byte[] keyBytes = BaseEncoding.base16().lowerCase().decode(SERVER_PRIVATE_KEY); in encrypt_canBeDecryptedByOhttpClient_withServerAuctionMediaTypeChange()
151 OhttpGatewayPrivateKey.create(keyBytes), in encrypt_canBeDecryptedByOhttpClient_withServerAuctionMediaTypeChange()
/packages/modules/Connectivity/staticlibs/framework/com/android/net/module/util/
DDnsSdTxtRecord.java70 byte[] keyBytes; in set()
83 keyBytes = key.getBytes("US-ASCII"); in set()
89 for (int i = 0; i < keyBytes.length; i++) { in set()
90 if (keyBytes[i] == '=') { in set()
95 if (keyBytes.length + valLen >= 255) { in set()
103 insert(keyBytes, valBytes, currentLoc); in set()
168 private void insert(byte[] keyBytes, byte[] value, int index) { in insert() argument
178 avLen = keyBytes.length + valLen + (value != null ? 1 : 0); in insert()
186 System.arraycopy(keyBytes, 0, mData, insertion + 1, keyBytes.length); in insert()
188 mData[insertion + 1 + keyBytes.length] = mSeparator; in insert()
[all …]
/packages/modules/IPsec/src/java/com/android/internal/net/crypto/
DKeyGenerationUtils.java42 ByteSigner byteSigner, byte[] keyBytes, byte[] dataToSign, int keyMaterialLen) { in prfPlus() argument
54 previousMac = byteSigner.signBytes(keyBytes, dataToSignBuffer.array()); in prfPlus()
79 byte[] signBytes(byte[] keyBytes, byte[] dataToSign); in signBytes() argument
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/utils/
DIkeCertUtilsTest.java80 byte[] keyBytes = HexDump.hexStringToByteArray(PRIVATE_KEY_HEX); in testCreatePrivateKeyFromByteArray()
81 PrivateKey key = IkeCertUtils.privateKeyFromByteArray(keyBytes); in testCreatePrivateKeyFromByteArray()
83 assertArrayEquals(keyBytes, key.getEncoded()); in testCreatePrivateKeyFromByteArray()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/crypto/
DIkeMacIntegrityTest.java211 byte[] keyBytes = TestUtils.hexStringToByteArray(AUTH_AES128XCBC_KEY_HEX_STRING); in testBuildIpSecAlgorithmFromAuthAes128XCbcMac()
214 IpSecAlgorithm algo = mAes128XCbcIntgerityMac.buildIpSecAlgorithmWithKey(keyBytes); in testBuildIpSecAlgorithmFromAuthAes128XCbcMac()
216 assertArrayEquals(keyBytes, algo.getKey()); in testBuildIpSecAlgorithmFromAuthAes128XCbcMac()
219 mAes128XCbcIntgerityMac.buildIpSecAlgorithmWithKey(keyBytes); in testBuildIpSecAlgorithmFromAuthAes128XCbcMac()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/crypto/
DHmacSha256ByteSigner.java47 public byte[] signBytes(byte[] keyBytes, byte[] dataToSign) { in signBytes() argument
50 mac.init(new SecretKeySpec(keyBytes, MAC_ALGORITHM_STRING)); in signBytes()
/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/
DBpfDump.java46 final byte[] keyBytes = key.writeToBytes(); in toBase64EncodedString()
47 final String keyBase64Str = Base64.encodeToString(keyBytes, Base64.DEFAULT) in toBase64EncodedString()
/packages/modules/Connectivity/service-t/src/com/android/server/connectivity/mdns/
DMdnsServiceInfo.java427 final byte[] keyBytes = key.getBytes(US_ASCII); in toBytes()
429 return keyBytes; in toBytes()
431 return ByteUtils.concat(keyBytes, new byte[]{'='}, value); in toBytes()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestCertActivity.java135 byte[] keyBytes = Base64.decode(key.getBytes(), Base64.DEFAULT); in savePublicKey()
150 mnc, type, identifier, keyBytes, new Date(), carrierId); in savePublicKey()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/testmode/
DDeterministicSecureRandom.java74 public byte[] signBytes(byte[] keyBytes, byte[] dataToSign) { in signBytes() argument
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/bluetooth/
DFastPairGattServerTest.java463 private byte[] encrypt(byte[] payload, byte[] keyBytes) { in encrypt() argument
464 SecretKeySpec key = new SecretKeySpec(keyBytes, "AES"); in encrypt()
474 private byte[] decrypt(byte[] encrypted, byte[] keyBytes) { in decrypt() argument
475 SecretKeySpec key = new SecretKeySpec(keyBytes, "AES"); in decrypt()
/packages/apps/Car/DebuggingRestrictionController/libs/
Dhttpclient-4.5.12.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/packages/modules/RuntimeI18n/apex/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt325 Landroid/icu/impl/ICUResourceBundleReader;->keyBytes:[B