/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/ |
D | IkeMacPrf.java | 49 int keyLength, in IkeMacPrf() argument 52 super(algorithmId, keyLength, algorithmName, isEncryptAlgo); in IkeMacPrf() 64 int keyLength = 0; in create() local 70 keyLength = 20; in create() 74 keyLength = 16; in create() 79 keyLength = 32; in create() 83 keyLength = 48; in create() 87 keyLength = 64; in create() 94 return new IkeMacPrf(algorithmId, keyLength, algorithmName, isEncryptAlgo); in create()
|
D | IkeMacIntegrity.java | 44 int keyLength, in IkeMacIntegrity() argument 48 super(algorithmId, keyLength, algorithmName, isEncryptAlgo); in IkeMacIntegrity() 61 int keyLength = 0; in create() local 70 keyLength = 20; in create() 75 keyLength = 16; in create() 81 keyLength = 32; in create() 86 keyLength = 48; in create() 91 keyLength = 64; in create() 101 algorithmId, keyLength, algorithmName, isEncryptAlgo, checksumLength); in create()
|
D | IkeCrypto.java | 28 protected IkeCrypto(int algorithmId, int keyLength, String algorithmName) { in IkeCrypto() argument 30 mKeyLength = keyLength; in IkeCrypto()
|
D | IkeCipher.java | 49 int algorithmId, int keyLength, int ivLength, String algorithmName, boolean isAead) { in IkeCipher() argument 50 super(algorithmId, keyLength, algorithmName); in IkeCipher()
|
D | IkeNormalModeCipher.java | 41 IkeNormalModeCipher(int algorithmId, int keyLength, int ivLength, String algorithmName) { in IkeNormalModeCipher() argument 42 super(algorithmId, keyLength, ivLength, algorithmName, false /*isAead*/); in IkeNormalModeCipher()
|
D | IkeMac.java | 44 protected IkeMac(int algorithmId, int keyLength, String algorithmName, boolean isEncryptAlgo) { in IkeMac() argument 45 super(algorithmId, keyLength, algorithmName); in IkeMac()
|
D | IkeCombinedModeCipher.java | 55 IkeCombinedModeCipher(int algorithmId, int keyLength, int ivLength, String algorithmName) { in IkeCombinedModeCipher() argument 56 super(algorithmId, keyLength, ivLength, algorithmName, true /*isAead*/); in IkeCombinedModeCipher()
|
/packages/modules/IPsec/src/java/android/net/ipsec/ike/ |
D | ChildSaProposal.java | 145 public Builder addEncryptionAlgorithm(@EncryptionAlgorithm int algorithm, int keyLength) { in addEncryptionAlgorithm() argument 146 validateAndAddEncryptAlgo(algorithm, keyLength); in addEncryptionAlgorithm()
|
D | IkeSaProposal.java | 133 public Builder addEncryptionAlgorithm(@EncryptionAlgorithm int algorithm, int keyLength) { in addEncryptionAlgorithm() argument 134 validateAndAddEncryptAlgo(algorithm, keyLength); in addEncryptionAlgorithm()
|
D | SaProposal.java | 438 @EncryptionAlgorithm int algorithm, int keyLength) { in validateAndAddEncryptAlgo() argument 441 EncryptionTransform encryptionTransform = new EncryptionTransform(algorithm, keyLength); in validateAndAddEncryptAlgo()
|
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/ |
D | IkeSaPayload.java | 1176 mSpecifiedKeyLength = attr.keyLength; in EncryptionTransform() 1766 public final int keyLength; field in IkeSaPayload.KeyLengthAttribute 1772 protected KeyLengthAttribute(int keyLength) { in KeyLengthAttribute() argument 1774 this.keyLength = keyLength; in KeyLengthAttribute() 1781 .putShort((short) keyLength); in encodeToByteBuffer()
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/header/ |
D | header_read_write_utils.cpp | 81 const int keyLength = ByteArrayUtils::readStringAndAdvancePosition(dictBuf, in fetchAllHeaderAttributes() local 84 key.insert(key.end(), keyBuffer, keyBuffer + keyLength); in fetchAllHeaderAttributes()
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/ |
D | IkeSaPayloadTest.java | 274 assertEquals(SaProposal.KEY_LEN_AES_128, ((KeyLengthAttribute) attribute).keyLength); in testDecodeAttribute()
|