HomeSort by relevance Sort by last modified time
    Searched refs:keyData (Results 1 - 25 of 33) sorted by null

1 2

  /external/conscrypt/common/src/main/java/org/conscrypt/
KeyGeneratorImpl.java 74 byte[] keyData = new byte[keyBytes];
75 secureRandom.nextBytes(keyData);
76 return keyData;
139 byte[] keyData = new byte[DESedeKeySpec.DES_EDE_KEY_LEN];
140 secureRandom.nextBytes(keyData);
142 for (int i = 0; i < keyData.length; i++) {
143 if (Integer.bitCount(keyData[i]) % 2 == 0) {
144 keyData[i] = (byte) (keyData[i] ^ 1);
149 System.arraycopy(keyData, 0, keyData, 16, 8)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
SubjectPublicKeyInfo.java 26 private DERBitString keyData;
55 this.keyData = new DERBitString(publicKey);
63 this.keyData = new DERBitString(publicKey);
82 this.keyData = DERBitString.getInstance(e.nextElement());
110 ASN1InputStream aIn = new ASN1InputStream(keyData.getOctets());
127 ASN1InputStream aIn = new ASN1InputStream(keyData.getOctets());
139 return keyData;
155 v.add(keyData);
  /external/icu/icu4c/source/common/
uloc_keytype.cpp 75 LocExtKeyData* keyData = (LocExtKeyData*)obj;
76 if (keyData->typeMap != NULL) {
77 uhash_close(keyData->typeMap);
79 uprv_free(keyData);
383 LocExtKeyData* keyData = (LocExtKeyData*)uprv_malloc(sizeof(LocExtKeyData));
384 if (keyData == NULL) {
388 keyData->bcpId = bcpKeyId;
389 keyData->legacyId = legacyKeyId;
390 keyData->specialTypes = specialTypes;
391 keyData->typeMap = typeDataMap
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
KeyUtil.java 11 public static byte[] getEncodedSubjectPublicKeyInfo(AlgorithmIdentifier algId, ASN1Encodable keyData)
15 return getEncodedSubjectPublicKeyInfo(new SubjectPublicKeyInfo(algId, keyData));
23 public static byte[] getEncodedSubjectPublicKeyInfo(AlgorithmIdentifier algId, byte[] keyData)
27 return getEncodedSubjectPublicKeyInfo(new SubjectPublicKeyInfo(algId, keyData));
  /frameworks/base/keystore/java/android/security/
SystemKeyStore.java 48 public static String toHexString(byte[] keyData) {
49 if (keyData == null) {
52 int keyLen = keyData.length;
53 int expectedStringLen = keyData.length * 2;
55 for (int i = 0; i < keyData.length; i++) {
56 String hexStr = Integer.toString(keyData[i] & 0x00FF, 16);
KeyStore.java 461 public int importKey(String alias, KeymasterArguments args, int format, byte[] keyData,
464 return mBinder.importKey(alias, args, format, keyData, uid, flags,
472 public int importKey(String alias, KeymasterArguments args, int format, byte[] keyData,
474 return importKey(alias, args, format, keyData, UID_SELF, flags, outCharacteristics);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
KeyTypeData.java 98 private static class KeyData {
104 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap,
125 KeyData keyData = KEYMAP.get(key);
126 if (keyData != null) {
127 return keyData.bcpId;
134 KeyData keyData = KEYMAP.get(key);
135 if (keyData != null) {
136 return keyData.legacyId
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
KeyTypeData.java 96 private static class KeyData {
102 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap,
123 KeyData keyData = KEYMAP.get(key);
124 if (keyData != null) {
125 return keyData.bcpId;
132 KeyData keyData = KEYMAP.get(key);
133 if (keyData != null) {
134 return keyData.legacyId
    [all...]
  /system/security/keystore/
legacy_keymaster_device_wrapper.h 59 const hidl_vec<uint8_t>& keyData, importKey_cb _hidl_cb) override;
legacy_keymaster_device_wrapper.cpp 277 const hidl_vec<uint8_t>& keyData,
288 auto kmKeyData = hidlVec2KmBlob(keyData);
key_store_service.h 110 const hidl_vec<uint8_t>& keyData, int uid, int flags,
IKeystoreService.cpp 626 KeyFormat format, const hidl_vec<uint8_t>& keyData, int uid,
634 writeBlobAsByteArray(keyData, &data);
    [all...]
key_store_service.cpp 873 KeyFormat format, const hidl_vec<uint8_t>& keyData, int uid, int flags,
    [all...]
  /frameworks/base/core/java/android/security/
IKeystoreService.aidl 65 in byte[] keyData, int uid, int flags, out KeyCharacteristics characteristics);
  /hardware/interfaces/keymaster/3.0/
IKeymasterDevice.hal 99 * @pram keyData The key material to import, in the format specifed in keyFormat.
111 importKey(vec<KeyParameter> params, KeyFormat keyFormat, vec<uint8_t> keyData)
  /hardware/interfaces/keymaster/3.0/default/
KeymasterDevice.h 64 const hidl_vec<uint8_t>& keyData, importKey_cb _hidl_cb) override;
KeymasterDevice.cpp 450 const hidl_vec<uint8_t>& keyData, importKey_cb _hidl_cb) {
460 auto kmKeyData = hidlVec2KmBlob(keyData);
  /cts/tests/tests/view/src/android/view/cts/
KeyEventTest.java 41 import android.view.KeyCharacterMap.KeyData;
174 KeyData keyData = new KeyData();
175 assertTrue(mKeyEvent.getKeyData(keyData));
177 assertEquals('Z', keyData.displayLabel);
178 assertEquals(0, keyData.number);
179 assertEquals('z', keyData.meta[0]);
180 assertEquals('Z', keyData.meta[1]);
181 assertEquals(0, keyData.meta[3])
    [all...]
  /packages/apps/Settings/src/com/android/settings/
CredentialStorage.java 217 private boolean isHardwareBackedKey(byte[] keyData) {
219 ASN1InputStream bIn = new ASN1InputStream(new ByteArrayInputStream(keyData));
  /external/python/cpython2/Mac/Modules/ae/
_AEmodule.c     [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
x509.go 930 func parsePublicKey(algo PublicKeyAlgorithm, keyData *publicKeyInfo) (interface{}, error) {
931 asn1Data := keyData.PublicKey.RightAlign()
936 if !bytes.Equal(keyData.Algorithm.Parameters.FullBytes, asn1Null) {
970 paramsData := keyData.Algorithm.Parameters.FullBytes
992 paramsData := keyData.Algorithm.Parameters.FullBytes
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
x509.go 930 func parsePublicKey(algo PublicKeyAlgorithm, keyData *publicKeyInfo) (interface{}, error) {
931 asn1Data := keyData.PublicKey.RightAlign()
936 if !bytes.Equal(keyData.Algorithm.Parameters.FullBytes, asn1Null) {
970 paramsData := keyData.Algorithm.Parameters.FullBytes
992 paramsData := keyData.Algorithm.Parameters.FullBytes
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 1186 milliseconds

1 2