HomeSort by relevance Sort by last modified time
    Searched defs:nonce (Results 26 - 50 of 94) sorted by null

12 3 4

  /frameworks/base/obex/javax/obex/
HeaderSet.java 214 /*package*/ byte[] nonce; field in class:HeaderSet
602 nonce = new byte[16];
604 nonce[i] = (byte)mRandom.nextInt();
607 mAuthChall = ObexHelper.computeAuthenticationChallenge(nonce, realm, access, userID);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 34 private byte[] nonce; field in class:GCMBlockCipher
96 nonce = param.getNonce();
112 nonce = param.getIV();
125 if (nonce == null || nonce.length < 1)
131 // (but must be 16 if nonce length not 12) (BLOCK_SIZE?)
150 if (nonce.length == 12)
152 System.arraycopy(nonce, 0, J0, 0, nonce.length);
157 gHASH(J0, nonce, nonce.length)
    [all...]
  /external/srtp/srtp/
srtp.c 330 v128_t nonce; local
332 /* set eigth octet of nonce to <label>, set the rest of it to zero */
333 v128_set_to_zero(&nonce);
334 nonce.v8[7] = label;
336 aes_icm_set_iv(&kdf->c, &nonce);
740 * if we're using rindael counter mode, set nonce and seq
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 470 * util function: current nonce
639 $nonce = $request instanceof OAuthRequest variable
644 $this->check_nonce($consumer, $token, $nonce, $timestamp);
680 * check that the nonce is not repeated
682 private function check_nonce($consumer, $token, $nonce, $timestamp) {
683 if( ! $nonce )
685 'Missing nonce parameter. The parameter is required'
688 // verify that the nonce is uniqueish
692 $nonce,
696 throw new OAuthException("Nonce already used: $nonce")
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageManager.java 86 * Next available nonce
116 public void onObbResult(String filename, int nonce, int status) {
119 delegate = mListeners.get(nonce);
121 mListeners.remove(nonce);
134 mListeners.put(delegate.nonce, delegate);
137 return delegate.nonce;
152 private final int nonce; field in class:StorageManager.ObbListenerDelegate
155 nonce = getNextNonce();
465 final int nonce = mObbActionListener.addListener(listener); local
466 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce);
502 final int nonce = mObbActionListener.addListener(listener); local
    [all...]
IMountService.java 493 IObbActionListener token, int nonce) throws RemoteException {
502 _data.writeInt(nonce);
519 String rawPath, boolean force, IObbActionListener token, int nonce)
528 _data.writeInt(nonce);
1052 int nonce; local
1066 int nonce; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
eapol.h 110 unsigned char nonce[EAPOL_WPA_KEY_NONCE_LEN]; /* Nonce */ member in struct:__anon20447
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 690 " nonce=\"dcd98b7102dd2f0e8b11d0f600bfb0c093\","
704 " nonce=\"Nny4QuC5PwiSDixJ\","
812 std::string realm, nonce, qop, opaque; local
814 HttpHasAttribute(args, "nonce", &nonce);
832 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop;
834 middle = nonce;
850 ss << ", nonce=" << quote(nonce);
  /external/ipsec-tools/src/racoon/
handler.h 153 vchar_t *nonce; /* nonce value */ member in struct:ph1handle
154 vchar_t *nonce_p; /* partner's nonce value */
300 vchar_t *nonce; /* nonce value in phase 2 */ member in struct:ph2handle
301 vchar_t *nonce_p; /* partner's nonce value in phase 2 */
  /external/openssh/
key.c 1865 u_char *ca_blob, *sig_blob, nonce[32]; local
    [all...]
umac.c 213 * xor the appropriate bytes depending on the last bits of nonce.
219 UINT8 nonce[AES_BLOCK_LEN]; /* The AES input making above cache */ member in struct:__anon12473
231 memset(pc->nonce, 0, sizeof(pc->nonce));
232 aes_encryption(pc->nonce, pc->cache, pc->prf_key);
235 static void pdf_gen_xor(pdf_ctx *pc, UINT8 nonce[8], UINT8 buf[8])
252 int ndx = nonce[7] & LOW_BIT_MASK;
254 *(UINT32 *)tmp_nonce_lo = ((UINT32 *)nonce)[1];
257 if ( (((UINT32 *)tmp_nonce_lo)[0] != ((UINT32 *)pc->nonce)[1]) ||
258 (((UINT32 *)nonce)[0] != ((UINT32 *)pc->nonce)[0])
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.h 52 u8 nonce[16]; member in struct:ft_r0kh_r1kh_pull_frame
66 u8 nonce[16]; /* copied from pull */ member in struct:ft_r0kh_r1kh_resp_frame
  /external/wpa_supplicant_8/src/rsn_supp/
tdls.c 52 u8 Anonce[WPA_NONCE_LEN]; /* Responder Nonce in TDLS */
53 u8 Snonce[WPA_NONCE_LEN]; /* Initiator Nonce in TDLS */
91 u8 inonce[WPA_NONCE_LEN]; /* Initiator Nonce */
92 u8 rnonce[WPA_NONCE_LEN]; /* Responder Nonce */
365 const u8 *nonce[2]; local
375 nonce[0] = peer->inonce;
376 nonce[1] = peer->rnonce;
378 nonce[0] = peer->rnonce;
379 nonce[1] = peer->inonce;
381 wpa_hexdump(MSG_DEBUG, "TDLS: min(Nonce)", nonce[0], WPA_NONCE_LEN)
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnectionPool.java 597 final int nonce; local
640 nonce = waiter.mNonce;
649 if (waiter.mNonce == nonce) {
    [all...]
  /bionic/libc/kernel/common/linux/
usb_ch9.h 375 __u8 nonce[16]; member in struct:usb_handshake
  /development/ndk/platforms/android-3/include/linux/
usb_ch9.h 355 __u8 nonce[16]; member in struct:usb_handshake
  /external/kernel-headers/original/linux/
usb_ch9.h 512 __u8 nonce[16]; member in struct:usb_handshake
  /external/openssl/include/openssl/
ts.h 120 nonce INTEGER OPTIONAL,
130 ASN1_INTEGER *nonce; /* OPTIONAL */ member in struct:TS_req_st
162 nonce INTEGER OPTIONAL,
178 ASN1_INTEGER *nonce; member in struct:TS_tst_info_st
387 int TS_REQ_set_nonce(TS_REQ *a, const ASN1_INTEGER *nonce);
448 int TS_TST_INFO_set_nonce(TS_TST_INFO *a, const ASN1_INTEGER *nonce);
629 /* Verify the nonce value. */
674 ASN1_INTEGER *nonce; member in struct:TS_verify_ctx
705 * nonce, nonce_len = nonce from the request or NULL if absent (in this cas
    [all...]
  /external/ping6/
ping6.c 163 /* FQDN case, 64 bits of nonce + 32 bits ttl */
236 u_int8_t nonce[8]; /* nonce field for node information */ variable
764 memset(nonce, 0, sizeof(nonce));
765 for (i = 0; i < sizeof(nonce); i += sizeof(u_int32_t))
766 *((u_int32_t *)&nonce[i]) = arc4random();
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
ikev2_common.h 13 * Nonce length must be at least 16 octets. It must also be at least half the
294 const u8 *nonce, size_t nonce_len,
312 const u8 *nonce; member in struct:ikev2_payloads
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 978 String nonce = getNonceFromResponse(response); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/usb/
ch9.h 530 __u8 nonce[16]; member in struct:usb_handshake
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/usb/
ch9.h 530 __u8 nonce[16]; member in struct:usb_handshake
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/usb/
ch9.h 530 __u8 nonce[16]; member in struct:usb_handshake
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
usb_ch9.h 355 __u8 nonce[16]; member in struct:usb_handshake

Completed in 1871 milliseconds

12 3 4