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

1 2

  /external/wpa_supplicant_8/src/eap_common/
eap_ikev2_common.c 23 u8 *nonces; local
31 nonces = os_malloc(nlen);
32 if (nonces == NULL)
34 os_memcpy(nonces, i_nonce, i_nonce_len);
35 os_memcpy(nonces + i_nonce_len, r_nonce, r_nonce_len);
37 if (ikev2_prf_plus(prf, keys->SK_d, keys->SK_d_len, nonces, nlen,
39 os_free(nonces);
42 os_free(nonces);
  /external/chromium_org/net/quic/crypto/
strike_register.h 18 // A StrikeRegister is critbit tree which stores a set of observed nonces.
66 // generated at startup and therefore nonces accepted by the previous
86 // behaviour. Otherwise, all nonces that are outside +/- |window_secs| from
87 // the current time will be rejected. Additionally, all nonces that have an
106 // d) already in the set of observed nonces
110 // nonces are:
crypto_server_config.h 70 // key for server nonces, which are always local to a given instance of a
124 // clock: used to validate client nonces and ephemeral keys.
182 // which are depending on server nonces may fail to handshake because their
189 // nonces from. Setting a larger value allows for clients to delay follow-up
190 // client hellos for longer and still use server nonces as proofs of
322 // observed client nonces in order to prevent replay attacks.
330 // nonces.
334 // server will use to generate server nonces (the moral equivalent of a SYN
340 // previously observed server nonces from this server, in order to prevent
crypto_utils.cc 32 // strike-register depends on the nonces being ordered by time.
crypto_server_test.cc 199 // Invalid nonces should be ignored.
strike_register.cc 71 // we just crashed, then we may have accepted nonces in the span
124 // We have dropped one or more nonces with a time value of |horizon_|, so
strike_register_test.cc 163 // We have dropped one or more nonces with a time value of |horizon_|, so
crypto_server_config.cc 71 // Generate a random key and orbit for server nonces.
    [all...]
  /frameworks/base/docs/html/google/play/billing/
billing_best_practices.jd 15 <li><a href="#nonce">Use Secure Random Nonces</a></li>
85 <h3 id="nonce">Use secure random nonces</h3>
86 <p>Nonces must not be predictable or reused. Always use a cryptographically secure random number
87 generator (like {@link java.security.SecureRandom}) when you generate nonces. This can help reduce
90 nonces on the server.</p>
  /external/wpa_supplicant_8/src/eap_peer/
eap_eke.c 466 u8 nonces[2 * EAP_EKE_MAX_NONCE_LEN]; local
489 decrypt_len = sizeof(nonces);
491 nonces, &decrypt_len) < 0) {
502 nonces, 2 * data->sess.nonce_len);
503 if (os_memcmp(data->nonce_p, nonces, data->sess.nonce_len) != 0) {
509 os_memcpy(data->nonce_s, nonces + data->sess.nonce_len,
ikev2.c 460 /* Zeros are removed incorrectly from the beginning of the nonces */
1134 /* Zeros are removed incorrectly from the beginning of the nonces in
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ocsp/
ocsp_ext.c 366 * 1: nonces present and equal.
367 * 2: nonces both absent.
369 * 0: nonces both present and not equal.
373 * If responder doesn't handle nonces return != 0 may be
  /external/openssl/crypto/ocsp/
ocsp_ext.c 366 * 1: nonces present and equal.
367 * 2: nonces both absent.
369 * 0: nonces both present and not equal.
373 * If responder doesn't handle nonces return != 0 may be
  /external/chromium/net/http/
http_auth_handler_digest.h 23 // A NonceGenerator is a simple interface for generating client nonces.
  /external/chromium_org/net/http/
http_auth_handler_digest.h 22 // A NonceGenerator is a simple interface for generating client nonces.
  /external/wpa_supplicant_8/src/eap_server/
eap_server_eke.c 308 u8 nonces[2 * EAP_EKE_MAX_NONCE_LEN]; local
328 os_memcpy(nonces, data->nonce_p, data->sess.nonce_len);
329 os_memcpy(nonces + data->sess.nonce_len, data->nonce_s,
332 if (eap_eke_prot(&data->sess, nonces, 2 * data->sess.nonce_len,
  /external/chromium_org/third_party/sqlite/src/tool/
restore_jrnl.tcl 180 puts "WARNING: different nonces: 0=$nonce $i=$tnonce"
  /external/srtp/
Changes 27 Change interface to nonces (xtd_seq_num_t) so that it uses
  /frameworks/base/docs/html/google/play/billing/v2/
billing_integrate.jd     [all...]
api.jd 483 <p>In-app billing also uses nonces (a random number used once) to help verify the integrity of the
  /external/wpa_supplicant_8/src/common/
wpa_common.c 68 * wpa_pmk_to_ptk - Calculate PTK from PMK, addresses, and nonces
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 650 * nonces. The ER (UPnP control point) will ignore this, but at
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 437 """Gives us a chance to update with new nonces
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 437 """Gives us a chance to update with new nonces
    [all...]
  /external/openssh/
umac.c 214 * This scheme is optimized for sequential, increasing big-endian nonces.
    [all...]

Completed in 1076 milliseconds

1 2