Searched defs:key (Results 76 - 100 of 2346) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_cred.h15 struct crypto_private_key *key; member in struct:tlsv1_credentials
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_none.c21 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_cred.h15 struct crypto_private_key *key; member in struct:tlsv1_credentials
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_none.c21 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_cred.h15 struct crypto_private_key *key; member in struct:tlsv1_credentials
/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/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/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
H A DMySecretKeyFactorySpi.java45 protected KeySpec engineGetKeySpec(SecretKey key, Class keySpec) argument
51 protected SecretKey engineTranslateKey(SecretKey key) argument
/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/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMDGoldenData.java189 * @param key MD algorithm name or MD algorithm name + "_NU" if
193 public static byte[] getDigest(String key) { argument
194 return ((byte[]) goldenData.get(key)).clone();
H A DSpiEngUtils.java62 public MyProvider(String name, String info, String key, String clName) { argument
64 put(key, clName);
H A DTestUtils.java67 * @param key - the name of the system property.
70 public static void setSystemProperty(String key, String value) { argument
73 properties.remove(key);
75 properties.setProperty(key, value);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertificate.java64 public void verify(PublicKey key) throws CertificateException, argument
72 public void verify(PublicKey key, String sigProvider) argument
86 * Returns public key (stub) from <code>MyCertificate</code> object
/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/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DDigitalSignatureTest.java32 private PrivateKey key; field in class:DigitalSignatureTest
43 key = entry.getPrivateKey();
59 ds_sign.init(key);
61 byte[] pivateKeyEncoding = key.getEncoded();
87 ds_sign.init(key);
/external/boringssl/
H A Dandroid_compat_keywrap.c64 int AES_wrap_key(AES_KEY *key, const uint8_t *iv, uint8_t *out, argument
80 AES_encrypt(B, B, key);
94 int AES_unwrap_key(AES_KEY *key, const uint8_t *iv, uint8_t *out, argument
115 AES_decrypt(B, B, key);
/external/boringssl/src/crypto/aes/
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
103 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/cipher/
H A De_null.c66 static int null_init_key(EVP_CIPHER_CTX *ctx, const uint8_t *key, argument
/external/boringssl/src/crypto/ec/
H A Dec_test.cc38 // kECKeyMissingZeros is an ECPrivateKey containing a degenerate P-256 key where
39 // the private key is one. The private key is incorrectly encoded without zero
51 // kECKeyMissingZeros is an ECPrivateKey containing a degenerate P-256 key where
52 // the private key is one. The private key is encoded with the required zero
78 // EncodeECPrivateKey encodes |key| as an ECPrivateKey structure into |*out|. It
80 static bool EncodeECPrivateKey(std::vector<uint8_t> *out, EC_KEY *key) { argument
81 int len = i2d_ECPrivateKey(key, NULL);
84 return i2d_ECPrivateKey(key,
88 ScopedEC_KEY key = DecodeECPrivateKey(kECKeyWithoutPublic, local
146 ScopedEC_KEY key = DecodeECPrivateKey(kECKeyWithZeros, local
[all...]
/external/boringssl/src/crypto/ecdsa/
H A Decdsa_asn1.c73 size_t ECDSA_size(const EC_KEY *key) { argument
80 if (key->ecdsa_meth && key->ecdsa_meth->group_order_size) {
81 group_order_size = key->ecdsa_meth->group_order_size(key);
85 if (key == NULL) {
88 group = EC_KEY_get0_group(key);
/external/boringssl/src/crypto/evp/
H A Dasn1.c155 int i2d_PublicKey(EVP_PKEY *key, uint8_t **outp) { argument
156 switch (key->type) {
158 return i2d_RSAPublicKey(key->pkey.rsa, outp);
160 return i2d_DSAPublicKey(key->pkey.dsa, outp);
162 return i2o_ECPublicKey(key->pkey.ec, outp);
/external/boringssl/src/crypto/hmac/
H A Dhmac_test.cc100 std::vector<uint8_t> key, input, output; local
101 if (!t->GetBytes(&key, "Key") ||
110 if (nullptr == HMAC(digest, bssl::vector_data(&key), key.size(),
121 if (!HMAC_Init_ex(ctx.get(), bssl::vector_data(&key), key.size(), digest,
131 // Test that an HMAC_CTX may be reset with the same key.
/external/boringssl/src/crypto/pkcs8/
H A Dpkcs12_test.cc30 * openssl pkcs12 -export -inkey key.pem -in cacert.pem */
465 /* kWindows is a dummy key and certificate exported from the certificate
691 EVP_PKEY *key = nullptr; local
693 if (!PKCS12_get_key_and_certs(&key, certs.get(), &pkcs12, "foo")) {
698 ScopedEVP_PKEY delete_key(key);
700 if (sk_X509_num(certs.get()) != 1 || key == nullptr) {
721 EVP_PKEY *key = nullptr; local
724 if (!PKCS12_parse(p12.get(), "foo", &key, &cert, &ca_certs)) {
729 ScopedEVP_PKEY delete_key(key);
733 if (key
[all...]
/external/boringssl/src/tool/
H A Dpkcs12.cc51 "Dump the key and contents of the given file to stdout",
122 EVP_PKEY *key; local
125 if (!PKCS12_get_key_and_certs(&key, certs, &pkcs12, password)) {
131 PEM_write_PrivateKey(stdout, key, NULL, NULL, 0, NULL, NULL);
132 EVP_PKEY_free(key);

Completed in 9624 milliseconds

1234567891011>>