Searched defs:key (Results 126 - 150 of 3586) sorted by relevance

1234567891011>>

/external/vogar/src/vogar/
H A DFileCache.java26 boolean existsInCache(String key); argument
28 void copyToCache(File source, String key); argument
30 void copyFromCache(String key, File destination); argument
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_none.c21 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_none.c21 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_none.c21 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
/external/ImageMagick/MagickCore/
H A Dartifact.c139 % "key=value" with per-image artifact. It is equivelent to
158 key[MagickPathExtent],
166 (void) CopyMagickString(key,artifact,MagickPathExtent-1);
167 for (p=key; *p != '\0'; p++)
174 return(SetImageArtifact(image,key,value));
270 % const char *GetImageArtifact(const Image *image,const char *key)
276 % o key: the key.
454 % o artifact: the image artifact key.
470 Create tree if needed - specify how key,value
155 key[MagickPathExtent], local
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DZIndexable.java59 * @param key
62 public boolean moveToBottom(ElementType key); argument
67 * @param key
70 public boolean moveUp(ElementType key); argument
74 * @param key
77 public boolean moveDown(ElementType key); argument
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
H A DIntMap.java51 public int get(final Object key) { argument
53 int h = (key.hashCode() & 0x7FFFFFFF) % n;
55 while (keys[i] != key) {
58 throw new RuntimeException("Cannot find index of " + key);
64 public void put(final Object key, final int value) { argument
66 int i = (key.hashCode() & 0x7FFFFFFF) % n;
70 keys[i] = key;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs45 public static bool containsKey(IDictionary map, object key) { argument
46 return map.Contains(key);
50 public static object get(IDictionary map, object key) { argument
51 return map[key];
55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) { argument
57 if (map.TryGetValue(key, out value))
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) { argument
69 if (map.TryGetValue(key, out value))
78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) { argument
80 if (map.TryGetValue(key, ou
91 put(IDictionary map, object key, object value) argument
96 put(IDictionary<TKey, TValue> map, TKey key, TValue value) argument
101 put(Dictionary<TKey, TValue> map, TKey key, TValue value) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs44 public static bool containsKey( this IDictionary map, object key )
46 return map.Contains( key );
50 public static object get( this IDictionary map, object key )
52 return map[key];
55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key )
58 if ( map.TryGetValue( key, out value ) )
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key )
71 if ( map.TryGetValue( key, out value ) )
80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key )
83 if ( map.TryGetValue( key, ou
93 put( this IDictionary map, object key, object value ) argument
99 put( this IDictionary<TKey, TValue> map, TKey key, TValue value ) argument
105 put( this Dictionary<TKey, TValue> map, TKey key, TValue value ) argument
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/support/
H A DP.java29 public String findProp(String key) { argument
30 return findProp(this.c, key);
33 private String findProp(Class cls, String key) { argument
37 ret = (String) b.getObject(key);
41 ret = findProp(cls.getSuperclass(), key);
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpConnector.java40 public void setRequestProperty(String key, String value) throws IOException; argument
/external/boringssl/src/crypto/cipher_extra/
H A De_null.c66 static int null_init_key(EVP_CIPHER_CTX *ctx, const uint8_t *key, argument
H A De_rc4.c65 static int rc4_init_key(EVP_CIPHER_CTX *ctx, const uint8_t *key, argument
69 RC4_set_key(rc4key, EVP_CIPHER_CTX_key_length(ctx), key);
/external/boringssl/src/crypto/evp/
H A Dp_ed25519.c29 ED25519_KEY *key = ctx->pkey->pkey.ptr; local
30 if (!key->has_private) {
40 return ED25519_sign(sig, tbs, tbslen, key->key.priv);
46 ED25519_KEY *key = ctx->pkey->pkey.ptr; local
48 !ED25519_verify(tbs, tbslen, sig, key->key.pub.value)) {
H A Dpbkdf_test.cc24 // Tests deriving a key using an empty password (specified both as NULL and as
30 uint8_t key[sizeof(kKey)]; local
33 EVP_sha1(), sizeof(kKey), key));
34 EXPECT_EQ(Bytes(kKey), Bytes(key));
37 EVP_sha1(), sizeof(kKey), key));
38 EXPECT_EQ(Bytes(kKey), Bytes(key));
41 // Tests deriving a key using an empty salt. Note that the expectation was
48 uint8_t key[sizeof(kKey)]; local
51 sizeof(kKey), key));
52 EXPECT_EQ(Bytes(kKey), Bytes(key));
70 uint8_t key[sizeof(kKey1)]; local
106 uint8_t key[sizeof(kKey2)]; local
132 uint8_t key[10] = {0}; local
[all...]
H A Dscrypt_test.cc42 std::vector<uint8_t> password, salt, key;
46 ASSERT_TRUE(t->GetBytes(&key, "Key"));
54 std::vector<uint8_t> result(key.size());
58 EXPECT_EQ(Bytes(key), Bytes(result));
67 uint8_t key[64]; local
71 1 /* p */, 0 /* max_mem */, key, sizeof(key)));
78 uint8_t key[64]; local
82 1 /* p */, 0 /* max_mem */, key, sizeof(key)));
[all...]
/external/boringssl/src/crypto/fipsmodule/aes/
H A Daes_test.cc31 std::vector<uint8_t> key, plaintext, ciphertext; local
32 ASSERT_TRUE(t->GetBytes(&key, "Key"));
40 ASSERT_EQ(0, AES_set_encrypt_key(key.data(), 8 * key.size(), &aes_key));
52 ASSERT_EQ(0, AES_set_decrypt_key(key.data(), 8 * key.size(), &aes_key));
73 std::vector<uint8_t> key, plaintext, ciphertext; local
74 ASSERT_TRUE(t->GetBytes(&key, "Key"));
83 ASSERT_EQ(0, AES_set_encrypt_key(key.data(), 8 * key
[all...]
H A Dkey_wrap.c66 int AES_wrap_key(const AES_KEY *key, const uint8_t *iv, uint8_t *out, argument
87 AES_encrypt(A, A, key);
102 int AES_unwrap_key(const AES_KEY *key, const uint8_t *iv, uint8_t *out, argument
128 AES_decrypt(A, A, key);
H A Dmode_wrappers.c57 const AES_KEY *key, uint8_t ivec[AES_BLOCK_SIZE],
59 CRYPTO_ctr128_encrypt(in, out, len, key, ivec, ecount_buf, num,
63 void AES_ecb_encrypt(const uint8_t *in, uint8_t *out, const AES_KEY *key, argument
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
78 const AES_KEY *key, uint8_t *ivec, const int enc) {
81 CRYPTO_cbc128_encrypt(in, out, len, key, ivec, (block128_f)AES_encrypt);
83 CRYPTO_cbc128_decrypt(in, out, len, key, ivec, (block128_f)AES_decrypt);
89 const AES_KEY *key, uint8_
56 AES_ctr128_encrypt(const uint8_t *in, uint8_t *out, size_t len, const AES_KEY *key, uint8_t ivec[AES_BLOCK_SIZE], uint8_t ecount_buf[AES_BLOCK_SIZE], unsigned int *num) argument
77 AES_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, const AES_KEY *key, uint8_t *ivec, const int enc) argument
90 AES_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, const AES_KEY *key, uint8_t *ivec, const int enc) argument
97 AES_ofb128_encrypt(const uint8_t *in, uint8_t *out, size_t length, const AES_KEY *key, uint8_t *ivec, int *num) argument
105 AES_cfb128_encrypt(const uint8_t *in, uint8_t *out, size_t length, const AES_KEY *key, uint8_t *ivec, int *num, int enc) argument
[all...]
/external/boringssl/src/crypto/fipsmodule/modes/
H A Dcbc.c56 const void *key, uint8_t ivec[16],
61 assert(key != NULL && ivec != NULL);
71 (*block)(out, out, key);
82 (*block)(out, out, key);
97 (*block)(out, out, key);
111 const void *key, uint8_t ivec[16],
119 assert(key != NULL && ivec != NULL);
136 (*block)(in, out, key);
147 (*block)(in, out, key);
167 (*block)(in, tmp.c, key);
55 CRYPTO_cbc128_encrypt(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], block128_f block) argument
110 CRYPTO_cbc128_decrypt(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], block128_f block) argument
[all...]
H A Dofb.c60 const void *key, uint8_t ivec[16], unsigned *num,
62 assert(in && out && key && ivec && num);
73 (*block)(ivec, ivec, key);
88 (*block)(ivec, ivec, key);
59 CRYPTO_ofb128_encrypt(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], unsigned *num, block128_f block) argument
/external/boringssl/src/crypto/pkcs8/
H A Dpkcs12_test.cc28 // openssl pkcs12 -export -inkey key.pem -in cacert.pem
463 // kWindows is a dummy key and certificate exported from the certificate
683 // openssl pkcs12 -export -inkey key.pem -in cert.pem -keypbe AES-128-CBC -certpbe AES-128-CBC
907 EVP_PKEY *key = nullptr; local
909 ASSERT_TRUE(PKCS12_get_key_and_certs(&key, certs.get(), &pkcs12, kPassword));
910 bssl::UniquePtr<EVP_PKEY> delete_key(key);
913 ASSERT_TRUE(key);
926 EVP_PKEY *key = nullptr; local
929 ASSERT_TRUE(PKCS12_parse(p12.get(), kPassword, &key, &cert, &ca_certs));
931 bssl::UniquePtr<EVP_PKEY> delete_key(key);
[all...]
/external/boringssl/src/crypto/rc4/
H A Drc4.c60 void RC4(RC4_KEY *key, size_t len, const uint8_t *in, uint8_t *out) { argument
61 uint32_t x = key->x;
62 uint32_t y = key->y;
63 uint32_t *d = key->data;
75 key->x = x;
76 key->y = y;
79 void RC4_set_key(RC4_KEY *rc4key, unsigned len, const uint8_t *key) { argument
91 id2 = (key[id1] + tmp + id2) & 0xff;
/external/boringssl/src/decrepit/cfb/
H A Dcfb.c28 static int aes_cfb_init_key(EVP_CIPHER_CTX *ctx, const uint8_t *key, argument
30 if (key) {
32 AES_set_encrypt_key(key, ctx->key_len * 8, &cfb_ctx->ks);
H A Dcfb_test.cc24 uint8_t key[16]; member in struct:CFBTestCase
60 test.key, test.iv));
82 nullptr, test.key, test.iv));

Completed in 466 milliseconds

1234567891011>>