HomeSort by relevance Sort by last modified time
    Searched refs:key (Results 301 - 325 of 4983) sorted by null

<<11121314151617181920>>

  /external/openssl/crypto/aes/
aes_ctr.c 56 size_t length, const AES_KEY *key,
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
aes_ofb.c 56 size_t length, const AES_KEY *key,
59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
  /external/openssl/crypto/bf/
bf_skey.c 66 void BF_set_key(BF_KEY *key, int len, const unsigned char *data)
70 private_BF_set_key(key, len, data);
72 void private_BF_set_key(BF_KEY *key, int len, const unsigned char *data)
80 memcpy(key,&bf_init,sizeof(BF_KEY));
81 p=key->P;
111 BF_encrypt(in,key);
116 p=key->S;
119 BF_encrypt(in,key);
  /external/openssl/crypto/des/t/
test 7 $key='00000000';
8 $ks=DES::set_key($key);
14 $key=DES::random_key();
16 @a=split(//,$key);
  /external/openssl/crypto/evp/
p_open.c 73 unsigned char *key=NULL; local
90 key=(unsigned char *)OPENSSL_malloc(size+2);
91 if (key == NULL)
98 i=EVP_PKEY_decrypt_old(key,ek,ekl,priv);
104 if(!EVP_DecryptInit_ex(ctx,NULL,NULL,key,iv)) goto err;
108 if (key != NULL) OPENSSL_cleanse(key,size);
109 OPENSSL_free(key);
  /external/openssl/crypto/rc4/
rc4_utl.c 56 void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data)
61 private_RC4_set_key(key, len, data);
  /external/smali/util/src/main/java/ds/tree/
RadixTreeNode.java 38 private String key; field in class:RadixTreeNode
51 key = "";
65 return key;
69 this.key = value;
88 public int getNumberOfMatchingCharacters(String key) {
90 while (numberOfMatchingCharacters < key.length() && numberOfMatchingCharacters < this.getKey().length()) {
91 if (key.charAt(numberOfMatchingCharacters) != this.getKey().charAt(numberOfMatchingCharacters)) {
101 return key;
  /external/srtp/crypto/include/
aes.h 59 aes_expand_encryption_key(const v128_t *key,
63 aes_expand_decryption_key(const v128_t *key,
  /external/webkit/Source/WebCore/html/
FormDataList.h 49 void appendData(const String& key, const String& value)
51 appendString(key);
54 void appendData(const String& key, const CString& value)
56 appendString(key);
59 void appendData(const String& key, int value)
61 appendString(key);
64 void appendBlob(const String& key, PassRefPtr<Blob> blob)
66 appendString(key);
  /external/webkit/Source/WebCore/storage/
Storage.idl 36 [DontEnum, ConvertNullStringTo=Null] DOMString key(in unsigned long index);
37 [DontEnum, ConvertNullStringTo=Null] DOMString getItem(in DOMString key);
38 [DontEnum] void setItem(in DOMString key, in DOMString data)
40 [DontEnum] void removeItem(in DOMString key);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
InspectorClientAndroid.h 46 virtual void populateSetting(const String& key, String* value) {}
47 virtual void storeSetting(const String& key, const String& value) {}
  /external/webkit/Source/WebKit/chromium/src/
StorageEventDispatcherChromium.cpp 46 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue,
51 WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
WebStorageAreaImpl.cpp 59 WebString WebStorageAreaImpl::key(unsigned index) function in class:WebKit::WebStorageAreaImpl
61 return m_storageArea->key(index);
64 WebString WebStorageAreaImpl::getItem(const WebString& key)
66 return m_storageArea->getItem(key);
69 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*)
74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0);
83 void WebStorageAreaImpl::removeItem(const WebString& key, const WebURL& url, WebString& oldValue)
86 oldValue = m_storageArea->removeItem(key, 0);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
InspectorClientEfl.h 51 virtual void populateSetting(const String& key, String* value);
52 virtual void storeSetting(const String& key, const String& value);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
InspectorClientWx.h 49 virtual void populateSetting(const String& key, String* value);
50 virtual void storeSetting(const String& key, const String& value);
  /external/webkit/Source/WebKit2/Shared/
WebPreferencesStore.cpp 38 const String& KeyLower##Key() \
40 DEFINE_STATIC_LOCAL(String, key, (#KeyUpper)); \
41 return key; \
112 String defaultValueForKey(const String& key)
116 #define DEFINE_STRING_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
121 return defaults.get(key);
125 bool defaultValueForKey(const String& key)
129 #define DEFINE_BOOL_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
134 return defaults.get(key);
138 uint32_t defaultValueForKey(const String& key)
    [all...]
  /external/webkit/Source/WebKit2/Shared/gtk/
NativeWebKeyboardEventGtk.cpp 37 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event->key))
43 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event.nativeEvent()->key))
  /external/webkit/Source/WebKit2/UIProcess/
WebPreferences.cpp 64 void WebPreferences::updateStringValueForKey(const String& key, const String& value)
66 platformUpdateStringValueForKey(key, value);
67 update(); // FIXME: Only send over the changed key and value.
70 void WebPreferences::updateBoolValueForKey(const String& key, bool value)
72 platformUpdateBoolValueForKey(key, value);
73 update(); // FIXME: Only send over the changed key and value.
76 void WebPreferences::updateUInt32ValueForKey(const String& key, uint32_t value)
78 platformUpdateUInt32ValueForKey(key, value);
79 update(); // FIXME: Only send over the changed key and value.
82 void WebPreferences::updateDoubleValueForKey(const String& key, double value
    [all...]
WebPreferences.h 82 void updateStringValueForKey(const String& key, const String& value);
83 void updateBoolValueForKey(const String& key, bool value);
84 void updateUInt32ValueForKey(const String& key, uint32_t value);
85 void updateDoubleValueForKey(const String& key, double value);
86 void platformUpdateStringValueForKey(const String& key, const String& value);
87 void platformUpdateBoolValueForKey(const String& key, bool value);
88 void platformUpdateUInt32ValueForKey(const String& key, uint32_t value);
89 void platformUpdateDoubleValueForKey(const String& key, double value);
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes.h 18 void * aes_encrypt_init(const u8 *key, size_t len);
21 void * aes_decrypt_init(const u8 *key, size_t len);
aes_wrap.h 4 * - AES Key Wrap Algorithm (128-bit KEK) (RFC3394)
5 * - One-Key CBC MAC (OMAC1) hash with AES-128
27 int __must_check omac1_aes_128_vector(const u8 *key, size_t num_elem,
30 int __must_check omac1_aes_128(const u8 *key, const u8 *data, size_t data_len,
32 int __must_check aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out);
33 int __must_check aes_128_ctr_encrypt(const u8 *key, const u8 *nonce,
35 int __must_check aes_128_eax_encrypt(const u8 *key,
39 int __must_check aes_128_eax_decrypt(const u8 *key,
43 int __must_check aes_128_cbc_encrypt(const u8 *key, const u8 *iv, u8 *data,
45 int __must_check aes_128_cbc_decrypt(const u8 *key, const u8 *iv, u8 *data
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes.h 14 void * aes_encrypt_init(const u8 *key, size_t len);
17 void * aes_decrypt_init(const u8 *key, size_t len);
aes_wrap.h 4 * - AES Key Wrap Algorithm (128-bit KEK) (RFC3394)
5 * - One-Key CBC MAC (OMAC1) hash with AES-128
21 int __must_check omac1_aes_128_vector(const u8 *key, size_t num_elem,
24 int __must_check omac1_aes_128(const u8 *key, const u8 *data, size_t data_len,
26 int __must_check aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out);
27 int __must_check aes_128_ctr_encrypt(const u8 *key, const u8 *nonce,
29 int __must_check aes_128_eax_encrypt(const u8 *key,
33 int __must_check aes_128_eax_decrypt(const u8 *key,
37 int __must_check aes_128_cbc_encrypt(const u8 *key, const u8 *iv, u8 *data,
39 int __must_check aes_128_cbc_decrypt(const u8 *key, const u8 *iv, u8 *data
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
KeyValueMap.java 31 throw new RuntimeException("Key-Value arguments passed into setKeyValues must be "
36 throw new RuntimeException("Key-value argument " + i + " must be a key of type "
39 String key = (String)keyValues[i]; local
41 put(key, value);
51 public String getString(String key) {
52 Object result = get(key);
56 public int getInt(String key) {
57 Object result = get(key);
61 public float getFloat(String key) {
    [all...]
  /libcore/luni/src/main/java/java/util/
NavigableMap.java 20 * greater than or equal, and greater than a given key, returning
21 * {@code null} if there is no such key. Similarly, methods
27 * ascending or descending key order. The {@code descendingMap}
69 * Returns a key-value mapping associated with the greatest key
70 * strictly less than the given key, or {@code null} if there is
71 * no such key.
73 * @param key the key
74 * @return an entry with the greatest key less than {@code key}
    [all...]

Completed in 600 milliseconds

<<11121314151617181920>>