HomeSort by relevance Sort by last modified time
    Searched full:secret (Results 1 - 25 of 301) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clearsilver/cs/
test_uvar.cs.gold 2 quote ' backslash \ semicolon ; end tag </script>Secret Password~!@#$%^&*()+=-_|\[]{}:";'<>,.?</title><script>alert(1)</script>
4 quote ' backslash \ semicolon ; end tag </script>Secret Password~!@#$%^&*()+=-_|\[]{}:";'<>,.?</title><script>alert(1)</script>
5 quote ' backslash \ semicolon ; end tag </script>Secret Password~!@#$%^&*()+=-_|\[]{}:";'<>,.?</title><script>alert(1)</script>
6 quote ' backslash \ semicolon ; end tag </script>Secret Password~!@#$%^&*()+=-_|\[]{}:";'<>,.?</title><script>alert(1)</script>
7 quote ' backslash \ semicolon ; end tag </script>Secret Password~!@#$%^&*()+=-_|\[]{}:";'<>,.?</title><script>alert(1)</script>
  /external/wpa_supplicant/examples/
wpa-psk-tkip.conf 11 psk="secret passphrase"
  /external/wpa_supplicant_6/wpa_supplicant/examples/
wpa-psk-tkip.conf 11 psk="secret passphrase"
  /packages/apps/Settings/src/com/android/settings/vpn/
L2tpEditor.java 58 CheckBoxPreference secret = mSecret = new CheckBoxPreference(c); local
60 setCheckBoxTitle(secret, R.string.vpn_l2tp_secret);
61 secret.setChecked(enabled);
62 setSecretSummary(secret, enabled);
63 secret.setOnPreferenceChangeListener(
74 return secret;
87 protected void saveSecretToProfile(String secret) {
88 ((L2tpProfile) getProfile()).setSecretString(secret);
96 private void setSecretSummary(CheckBoxPreference secret, boolean enabled) {
97 Context c = secret.getContext()
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
SealedObjectTest.java 79 String secret = "secret string"; local
80 SealedObject so = new SealedObject(secret, new NullCipher());
89 assertEquals("The secret content of deserialized object "
90 + "should be equal to the secret content of initial object",
91 secret, so_des.getObject(new NullCipher()));
108 String secret = "secret string"; local
110 new SealedObject(secret, null);
125 SealedObject so = new SealedObject(secret, cipher)
156 String secret = "secret string"; local
180 String secret = "secret string"; local
214 String secret = "secret string"; local
264 String secret = "secret string"; local
315 String secret = "secret string"; local
    [all...]
  /dalvik/libcore/crypto/src/main/java/javax/crypto/
SecretKeyFactorySpi.java 37 * Generate a secret key from the specified key specification.
41 * @return a secret key.
44 * a secret key.
50 * Returns the key specification of the specified secret key.
53 * the secret key to get the specification from.
58 * if the specified secret key cannot be transformed into the
66 * Translates the specified secret key into an instance of the corresponding
70 * the secret key to translate.
SecretKeyFactory.java 35 * Secret key factories provide the following functionality:
66 * the algorithm name for the secret key.
76 * Returns the name of the secret key algorithm.
78 * @return the name of the secret key algorithm.
99 * @return a secret key factory for the specified key algorithm.
126 * @return a secret key factory for the specified key algorithm from the
157 * @return a secret key factory for the specified key algorithm from the
183 * Generate a secret key from the specified key specification.
187 * @return a secret key.
190 * a secret key
    [all...]
KeyAgreementSpi.java 60 * Generates the shared secret.
62 * @return the generated shared secret.
70 * Generates the shared secret and stores it into the buffer {@code
74 * the buffer to store the shared secret.
81 * if the specified buffer is too small for the shared secret.
87 * Generates the shared secret.
91 * @return the shared secret as a {@code SecretKey} of the specified
96 * if the specified algorithm for the secret key does not
100 * created using the generated shared secret.
SecretKey.java 23 * A cryptographic secret (symmetric) key.
25 * This interface is a <i>marker interface</i> to group secret keys and to
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
CipherKeyGenerator.java 6 * The base class for symmetric, or secret, cipher key generators.
26 * generate a secret key.
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
PRF.java 71 * @param secret: the buffer containing the secret value to generate prf.
74 static synchronized void computePRF_SSLv3(byte[] out, byte[] secret, byte[] seed) {
85 sha.update(secret);
87 md5.update(secret);
103 * @param secret: the buffer containing the secret value to generate prf.
107 synchronized static void computePRF(byte[] out, byte[] secret,
127 if ((secret == null) || (secret.length == 0))
    [all...]
  /external/openssl/crypto/jpake/
jpaketest.c 120 BIGNUM *secret = BN_new(); local
150 BN_rand(secret, 32, -1, 0);
153 alice = JPAKE_CTX_new("Alice", "Bob", p, g, q, secret);
154 bob = JPAKE_CTX_new("Bob", "Alice", p, g, q, secret);
166 alice = JPAKE_CTX_new("Alice", "Bob", p, g, q, secret);
167 BN_add_word(secret, 1);
168 bob = JPAKE_CTX_new("Bob", "Alice", p, g, q, secret);
172 fprintf(stderr, "Mismatched secret JPAKE run failed\n");
179 BN_free(secret);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
chap.c 22 void chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge,
30 addr[1] = secret;
chap.h 20 void chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge,
  /external/ppp/pppd/plugins/radius/
sendserver.c 33 static int rc_pack_list (VALUE_PAIR *vp, char *secret, AUTH_HDR *auth)
106 secretlen = strlen (secret);
110 strcpy ((char *) md5buf, secret);
141 secretlen = strlen (secret);
142 strcpy ((char *) md5buf, secret);
209 char secret[MAX_SECRET_LENGTH + 1]; local
223 strcpy(secret, MGMT_POLL_SECRET);
229 if (rc_find_server (server_name, &auth_ipaddr, secret) != 0)
238 memset (secret, '\0', sizeof (secret));
    [all...]
  /frameworks/base/vpn/java/android/net/vpn/
L2tpProfile.java 37 * Enables/disables the secret for authenticating tunnel connection.
47 public void setSecretString(String secret) {
48 mSecretString = secret;
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_shared_secret.c 21 Create a DSA shared secret between two keys
25 @param out [out] Destination of the shared secret
26 @param outlen [in/out] The max size and resulting size of the shared secret
  /external/wpa_supplicant/
radius.h 206 int radius_msg_finish(struct radius_msg *msg, u8 *secret, size_t secret_len);
207 int radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret,
209 void radius_msg_finish_acct(struct radius_msg *msg, u8 *secret,
217 int radius_msg_verify(struct radius_msg *msg, const u8 *secret,
220 int radius_msg_verify_msg_auth(struct radius_msg *msg, const u8 *secret,
228 u8 *secret, size_t secret_len);
231 u8 *secret, size_t secret_len);
234 const u8 *secret, size_t secret_len,
240 u8 *secret, size_t secret_len);
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius.h 210 int radius_msg_finish(struct radius_msg *msg, const u8 *secret,
212 int radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret,
214 void radius_msg_finish_acct(struct radius_msg *msg, const u8 *secret,
222 int radius_msg_verify(struct radius_msg *msg, const u8 *secret,
225 int radius_msg_verify_msg_auth(struct radius_msg *msg, const u8 *secret,
233 const u8 *secret, size_t secret_len);
236 const u8 *secret, size_t secret_len);
239 const u8 *secret, size_t secret_len,
245 const u8 *secret, size_t secret_len);
  /external/dropbear/libtomcrypt/src/modes/ecb/
ecb_start.c 24 @param key The secret key
25 @param keylen The length of the secret key (octets)
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JCEDHKeyAgreement.java 104 byte[] secret = bigIntToBytes(result);
106 if (sharedSecret.length - offset < secret.length)
111 System.arraycopy(secret, 0, sharedSecret, offset, secret.length);
113 return secret.length;
  /external/ppp/pppd/
chap-md5.c 58 unsigned char *secret, int secret_len,
70 /* Generate hash of ID, secret, challenge */
73 MD5_Update(&ctx, secret, secret_len);
89 unsigned char *challenge, char *secret, int secret_len,
98 MD5_Update(&ctx, secret, secret_len);
  /frameworks/base/packages/VpnServices/src/com/android/server/vpn/
VpnDaemons.java 48 public DaemonProxy startL2tp(String serverIp, String secret,
50 return startMtpd(L2TP, serverIp, L2TP_PORT, secret, username, password,
119 String serverIp, String port, String secret, String username,
123 if (secret != null) args.add(secret);
  /packages/providers/CalendarProvider/res/values/
strings.xml 42 <!-- Caption on secret calendar info -->
45 <!-- Error message for secret calendar info -->
48 <!-- No calendars message for secret calendar info -->
51 <!-- Event count message for secret calendar info -->
54 <!-- Event and dirty event count message for secret calendar info -->
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTypeTest.java 65 assertEquals(KeyRep.Type.SECRET, KeyRep.Type.valueOf(KeyRep.Type.SECRET
79 KeyRep.Type[] types = new KeyRep.Type[] { KeyRep.Type.SECRET,

Completed in 451 milliseconds

1 2 3 4 5 6 7 8 91011>>