HomeSort by relevance Sort by last modified time
    Searched refs:keySize (Results 76 - 100 of 315) sorted by null

1 2 34 5 6 7 8 91011>>

  /system/security/keystore/
user_state.cpp 224 void UserState::generateKeyFromPassword(uint8_t* key, ssize_t keySize, const android::String8& pw,
237 8192, keySize, key);
key_store_service.cpp 363 int32_t keyType, int32_t keySize, int32_t flags,
378 if (keySize == -1) {
379 keySize = EC_DEFAULT_KEY_SIZE;
380 } else if (keySize < EC_MIN_KEY_SIZE || keySize > EC_MAX_KEY_SIZE) {
381 ALOGI("invalid key size %d", keySize);
384 params.push_back(TAG_KEY_SIZE, keySize);
389 if (keySize == -1) {
390 keySize = RSA_DEFAULT_KEY_SIZE;
391 } else if (keySize < RSA_MIN_KEY_SIZE || keySize > RSA_MAX_KEY_SIZE)
    [all...]
  /external/tpm2/
CpriHash.c 569 UINT16 keySize, // IN: the size of the HMAC key
581 if(keySize > blockSize)
586 _cpri__UpdateHash(&localState, keySize, key);
593 memcpy(oPadKey->buffer, key, keySize);
594 oPadKey->size = keySize;
600 // if the keySize is smaller than a block, fill the rest with 0x36
    [all...]
CryptUtil.c 213 UINT16 keySize, // IN: the size of HMAC key in byte
228 if((retVal = _cpri__StartHMAC(hashAlg, FALSE, &hashState->state, keySize, key,
250 UINT16 keySize, // IN: the size of HMAC key in byte
261 keySize, key, &hmacState->hmacKey.b)) > 0)
    [all...]
  /external/conscrypt/testing/src/main/java/libcore/java/security/
TestKeyStore.java 580 int keySize = -1;
583 keySize = RSA_KEY_SIZE_BITS;
588 keySize = DSA_KEY_SIZE_BITS;
593 keySize = EC_KEY_SIZE_BITS;
595 keySize = EC_KEY_SIZE_BITS;
604 } else if (keySize != -1) {
605 kpg.initialize(keySize);
    [all...]
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 570 int keySize = -1;
573 keySize = RSA_KEY_SIZE_BITS;
578 keySize = DSA_KEY_SIZE_BITS;
583 keySize = EC_KEY_SIZE_BITS;
585 keySize = EC_KEY_SIZE_BITS;
594 } else if (keySize != -1) {
595 kpg.initialize(keySize);
    [all...]
  /external/skia/src/shaders/
SkPictureShader.cpp 53 static const size_t keySize = sizeof(fColorSpace) +
60 SkASSERT(sizeof(uint32_t) * (&fEndOfStruct - (uint32_t*)&fColorSpace) == keySize);
61 this->init(&gBitmapSkaderKeyNamespaceLabel, MakeSharedID(shaderID), keySize);
  /hardware/interfaces/weaver/1.0/vts/functional/
VtsHalWeaverV1_0TargetTest.cpp 65 EXPECT_GE(config.keySize, 16u);
275 std::vector<uint8_t> bigKey(config.keySize + 1);
317 std::vector<uint8_t> bigKey(config.keySize + 1);
  /external/icu/icu4c/source/i18n/
ucol.cpp 203 int32_t keySize = Collator::fromUCollator(coll)->
206 UTRACE_DATA2(UTRACE_VERBOSE, "Sort Key = %vb", result, keySize);
207 UTRACE_EXIT_VALUE(keySize);
208 return keySize;
  /prebuilts/go/darwin-x86/src/runtime/
mapspeed_test.go 185 func benchmarkMapStringKeysEight(b *testing.B, keySize int) {
190 key := strings.Repeat("K", keySize)
  /prebuilts/go/linux-x86/src/runtime/
mapspeed_test.go 185 func benchmarkMapStringKeysEight(b *testing.B, keySize int) {
190 key := strings.Repeat("K", keySize)
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCharacteristic.java 454 public void setKeySize(int keySize) {
455 mKeySize = keySize;
  /tools/apksig/src/apksigner/java/com/android/apksigner/
ApkSignerTool.java 478 int keySize = -1;
480 keySize = ((RSAKey) publicKey).getModulus().bitLength();
482 keySize = ((ECKey) publicKey).getParams()
489 keySize = dsaParams.getP().bitLength();
494 + ((keySize != -1)
495 ? String.valueOf(keySize) : "n/a"));
    [all...]
  /external/mesa3d/src/mesa/main/
ff_fragment_shader.cpp 110 /* NOTE: This array of structs must be last! (see "keySize" below) */
405 GLuint keySize;
481 keySize = sizeof(*key) - sizeof(key->unit)
484 return keySize;
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyPairGeneratorSpi.java 178 public void initialize(int keysize, SecureRandom random) {
    [all...]
AndroidKeyStoreKeyGeneratorSpi.java 145 protected void engineInit(int keySize, SecureRandom random) {
  /frameworks/wilhelm/tests/examples/
slesTestDecodeAac.cpp 679 SLuint32 keySize, valueSize;
682 keyInfo = NULL; keySize = 0;
684 res = (*mdExtrItf)->GetKeySize(mdExtrItf, i, &keySize);
688 keyInfo = (SLMetadataInfo*) malloc(keySize);
690 res = (*mdExtrItf)->GetKey(mdExtrItf, i, keySize, keyInfo);
    [all...]
  /frameworks/base/services/core/java/com/android/server/locksettings/
SyntheticPasswordManager.java 328 key = new byte[mWeaverConfig.keySize];
329 } else if (key.length != mWeaverConfig.keySize) {
354 key = new byte[mWeaverConfig.keySize];
355 } else if (key.length != mWeaverConfig.keySize) {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
AES.java 386 public KeyGen(int keySize)
388 super("AES", keySize, new CipherKeyGenerator());
    [all...]
  /external/skia/tests/
GpuLayerCacheTest.cpp 45 const int* key, int keySize) {
46 return cache->findLayer(pictureID, initialMat, key, keySize);
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
DsaTest.java     [all...]
  /frameworks/wilhelm/src/android/
android_AudioSfDecoder.cpp 113 bool AudioSfDecoder::getPcmFormatKeyName(uint32_t index, uint32_t keySize, char* keyName) {
118 if (keySize < actualKeySize) {
  /packages/apps/Nfc/nci/jni/
NativeNfcTag.cpp     [all...]
  /development/ndk/platforms/android-18/include/EGL/
eglext.h 500 typedef void (*EGLSetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize);
501 typedef EGLsizeiANDROID (*EGLGetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize);
  /development/ndk/platforms/android-19/include/EGL/
eglext.h 508 typedef void (*EGLSetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize);
509 typedef EGLsizeiANDROID (*EGLGetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize);

Completed in 1397 milliseconds

1 2 34 5 6 7 8 91011>>