Searched refs:nonce (Results 1 - 25 of 119) sorted by relevance

12345

/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A DtsaSupport.h43 OSStatus SecCmsTSADefaultCallback(CFTypeRef context, void *messageImprint, uint64_t nonce, CSSM_DATA *signedDERBlob);
H A DtsaTemplates.h60 CSSM_DATA nonce; // INTEGER optional member in struct:__anon3899
98 CSSM_DATA nonce; // INTEGER optional member in struct:__anon3903
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A DtsaSupport.h43 OSStatus SecCmsTSADefaultCallback(CFTypeRef context, void *messageImprint, uint64_t nonce, CSSM_DATA *signedDERBlob);
H A DtsaTemplates.h60 CSSM_DATA nonce; // INTEGER optional member in struct:__anon4916
98 CSSM_DATA nonce; // INTEGER optional member in struct:__anon4920
/macosx-10.10/xnu-2782.1.97/EXTERNAL_HEADERS/corecrypto/
H A Dccdrbg_impl.h30 unsigned long nonceLength, const void* nonce,
H A Dccdrbg.h51 unsigned long nonceLength, const void* nonce,
54 return info->init(info, drbg, entropyLength, entropy, nonceLength, nonce, psLength, ps);
48 ccdrbg_init(const struct ccdrbg_info *info, struct ccdrbg_state *drbg, unsigned long entropyLength, const void* entropy, unsigned long nonceLength, const void* nonce, unsigned long psLength, const void* ps) argument
/macosx-10.10/OpenSSH-189/openssh/
H A Dumac.h68 int umac_final(struct umac_ctx *ctx, u_char tag[], u_char nonce[8]);
79 u_char nonce[8]);
122 int umac128_final(struct umac_ctx *ctx, u_char tag[], u_char nonce[8]);
H A Dmac.c160 u_char b[4], nonce[8]; local
176 put_u64(nonce, seqno);
178 umac_final(mac->umac_ctx, m, nonce);
181 put_u64(nonce, seqno);
183 umac128_final(mac->umac_ctx, m, nonce);
/macosx-10.10/xnu-2782.1.97/osfmk/prng/
H A Drandom.c148 * The nonce is the first 8 bytes of entropy xor'ed with a timestamp
155 * but with a different timestamped nonce and cpu number as personalization.
169 uint64_t nonce; local
208 * Init our DBRG from the boot entropy and a nonce composed of
211 assert(sizeof(erandom_seed) > sizeof(nonce));
212 bcopy(erandom_seed, &nonce, sizeof(nonce));
213 nonce ^= ml_get_timebase();
216 sizeof(nonce), &nonce,
303 uint64_t nonce; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/sasl/
H A Dntlm.tcl71 $user $pass $params(nonce) $params(flags)]
116 set nonce [string range [binary format h* [SASL::CreateNonce]] 0 7]
123 append msg $nonce $pad $context $pad $target
128 # and password, along with the server nonce value.
130 proc ::SASL::NTLM::CreateResponse {domainname hostname username passwd nonce flags} {
131 set lm_resp [LMhash $passwd $nonce]
132 set nt_resp [NThash $passwd $nonce]
178 if {[info exists d(nonce)]} { set d(nonce) [base64::encode $d(nonce)] }
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_x509_tp/lib/
H A DocspRequest.cpp46 /* size of nonce we generate, in bytes */
99 OCSPNonce *nonce = NULL; local
152 * one optional extension (a nonce)
158 /* one extension - the nonce */
162 nonce = new OCSPNonce(mCoder, false, nonceData);
163 extenArray[0] = nonce->nssExt();
188 if(nonce) {
189 delete nonce;
197 const CSSM_DATA *OCSPRequest::nonce() function in class:OCSPRequest
H A DocspRequest.h59 * Obtain this request's nonce (which we randomly generate at encode() time),
61 * didn't generate a nonce.
63 const CSSM_DATA *nonce();
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/ocspTool/
H A DocspRequest.cpp46 /* size of nonce we generate, in bytes */
98 OCSPNonce *nonce = NULL; local
143 * one optional extension (a nonce)
149 /* one extension - the nonce */
153 nonce = new OCSPNonce(mCoder, false, nonceData);
154 extenArray[0] = nonce->nssExt();
170 if(nonce) {
171 delete nonce;
179 const CSSM_DATA *OCSPRequest::nonce() function in class:OCSPRequest
H A DocspRequest.h60 * Obtain this request's nonce (which we randomly generate at encode() time),
62 * didn't generate a nonce.
64 const CSSM_DATA *nonce();
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Dschnauthcn.h129 unsigned8 nonce[8]; member in struct:rpc_cn_schnauth_tlr
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dhttp_digest.c119 WWW-Authenticate: Digest realm="testrealm", nonce="1053604598"
120 Proxy-Authenticate: Digest realm="testrealm", nonce="1053604598"
134 bool before = FALSE; /* got a nonce before */
147 /* If we already have received a nonce, keep that in mind */
148 if(d->nonce)
163 if(Curl_raw_equal(value, "nonce")) {
164 d->nonce = strdup(content);
165 if(!d->nonce)
171 d->nc = 1; /* we make a new nonce now */
239 /* We had a nonce sinc
[all...]
H A Dcurl_sasl.c318 * nonce [in/out] - The buffer where the nonce will be stored.
319 * nlen [in] - The length of the nonce buffer.
330 char *nonce, size_t nlen,
351 /* Retrieve nonce string from the challenge */
352 if(!sasl_digest_get_key_value((char *)chlg, "nonce=\"", nonce, nlen, '\"')) {
414 char nonce[64]; local
427 result = sasl_decode_digest_md5_message(chlg64, nonce, sizeof(nonce),
329 sasl_decode_digest_md5_message(const char *chlg64, char *nonce, size_t nlen, char *realm, size_t rlen, char *alg, size_t alen, char *qop, size_t qlen) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLScriptElement.idl30 [Reflect, Conditional=CSP_NEXT] attribute DOMString nonce;
/macosx-10.10/cups-408/cups/cups/
H A Dmd5passwd.c21 * with the server-supplied nonce value.
67 * with the server-supplied nonce value, method, and
72 httpMD5Final(const char *nonce, /* I - Server nonce value */ argument
94 * Then combine A1 (MD5 of username, realm, and password) with the nonce
99 snprintf(line, sizeof(line), "%s:%s:%s", md5, nonce, a2);
/macosx-10.10/ruby-106/ruby/lib/webrick/httpauth/
H A Ddigestauth.rb53 OpaqueInfo = Struct.new(:time, :nonce, :nc) # :nodoc:
135 nonce = generate_next_nonce(req)
138 @opaques[opaque].nonce = nonce
144 param["nonce"] = HTTPUtils::quote(nonce)
160 MustParams = ['username','realm','nonce','uri','response']
229 ha1 = hexdigest(password, auth_req['nonce'], auth_req['cnonce'])
244 param2 = ['nonce', 'nc', 'cnonce', 'qop'].map{|key|
250 digest = hexdigest(ha1, auth_req['nonce'], ha
[all...]
/macosx-10.10/Heimdal-398.1.2/tests/kdc/
H A Dcheck-digest.in174 snonce=`grep server-nonce= sdigest-reply | cut -f2- -d=`
184 --server-nonce="$snonce" \
190 #echo server-nonce: $snonce
201 --server-nonce="$snonce" \
222 --server-nonce="$snonce" \
241 snonce=`grep server-nonce= sdigest-reply | cut -f2- -d=`
251 --client-nonce="$cnonce" \
252 --server-nonce="$snonce" \
265 --client-nonce="$cnonce" \
266 --server-nonce
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/ntlm/
H A Dscram.h84 heim_scram_data nonce; member in struct:heim_scram
/macosx-10.10/Security-57031.1.35/Security/include/security_ocspd/
H A DocspExtensions.h130 const CSSM_DATA &nonce);
134 CSSM_DATA &nonce() { return mNonce; } function in class:OCSPNonce
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ocspd/common/
H A DocspExtensions.h130 const CSSM_DATA &nonce);
134 CSSM_DATA &nonce() { return mNonce; } function in class:OCSPNonce
/macosx-10.10/bind9-45.101/bind9/lib/dns/include/dns/
H A Dtkey.h99 dns_name_t *algorithm, isc_buffer_t *nonce,
107 * if 'name' == dns_rootname. If nonce is not NULL, it supplies
168 dst_key_t *key, isc_buffer_t *nonce,

Completed in 235 milliseconds

12345