Searched refs:seed (Results 101 - 125 of 304) sorted by relevance

1234567891011>>

/macosx-10.10/OpenSSL098-52/src/fips/dsa/
H A Dfips_dsatest.c100 /* seed, out_p, out_q, out_g are taken from the earlier validation test
104 static unsigned char seed[20] = { variable
169 DSA_generate_parameters_ex(dsa, 1024,seed,20,&counter,&h,&cb);
171 fprintf(stderr,"seed\n");
175 seed[i],seed[i+1],seed[i+2],seed[i+3]);
/macosx-10.10/OpenSSL098-52/src/test/
H A Dfips_dsatest.c100 /* seed, out_p, out_q, out_g are taken from the earlier validation test
104 static unsigned char seed[20] = { variable
169 DSA_generate_parameters_ex(dsa, 1024,seed,20,&counter,&h,&cb);
171 fprintf(stderr,"seed\n");
175 seed[i],seed[i+1],seed[i+2],seed[i+3]);
/macosx-10.10/Security-57031.1.35/Security/include/security_comcryption/
H A DcomcryptPriv.c114 unsigned x = HASH_SEED; /* Any seed in [1,p-1]. Like SEED = 3. */
399 unsigned seed = IN_OFFSET; local
403 seed += key[j];
405 seed %= HASH_PRIME;
406 if(seed == 0) {
407 seed = IN_OFFSET;
409 cbuf->sigArray[0] = (unsigned short)seed;
/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DSecWrappedKeys.cpp223 CSSM_CRYPTO_DATA seed; local
230 memset(&seed, 0, sizeof(seed));
233 coder.allocItem(seed.Param, len);
234 memmove(seed.Param.Data, CFDataGetBytePtr(cfPhrase), len);
247 &seed,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_comcryption/lib/
H A DcomcryptPriv.c114 unsigned x = HASH_SEED; /* Any seed in [1,p-1]. Like SEED = 3. */
399 unsigned seed = IN_OFFSET; local
403 seed += key[j];
405 seed %= HASH_PRIME;
406 if(seed == 0) {
407 seed = IN_OFFSET;
409 cbuf->sigArray[0] = (unsigned short)seed;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DSecWrappedKeys.cpp223 CSSM_CRYPTO_DATA seed; local
230 memset(&seed, 0, sizeof(seed));
233 coder.allocItem(seed.Param, len);
234 memmove(seed.Param.Data, CFDataGetBytePtr(cfPhrase), len);
247 &seed,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DSecWrappedKeys.cpp223 CSSM_CRYPTO_DATA seed; local
230 memset(&seed, 0, sizeof(seed));
233 coder.allocItem(seed.Param, len);
234 memmove(seed.Param.Data, CFDataGetBytePtr(cfPhrase), len);
247 &seed,
/macosx-10.10/OpenSSL098-52/src/apps/
H A Dprogs.pl66 "des", "des3", "desx", "idea", "seed", "rc4", "rc4-40",
73 "seed-cbc","seed-ecb", "seed-cfb", "seed-ofb",
86 elsif ($_ =~ /seed/) { $t="#ifndef OPENSSL_NO_SEED\n${t}#endif\n"; }
/macosx-10.10/OpenSSL098-52/src/crypto/rand/
H A Drand_lib.c212 if (meth && meth->seed)
213 meth->seed(buf,num);
H A Drand.h83 void (*seed)(const void *buf, int num); member in struct:rand_meth_st
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A Dmiscalgorithms.cpp134 reset(); // throw away, we need to re-seed anyway
141 // seed the PRNG (if specified)
142 if (const CssmCryptoData *seed = context.get<CssmCryptoData>(CSSM_ATTRIBUTE_SEED)) {
143 const CssmData &seedValue = (*seed)();
/macosx-10.10/apr-32/apr/apr/tables/
H A Dapr_hash.c79 unsigned int count, max, seed; member in struct:apr_hash_t
106 ht->seed = (unsigned int)((now >> 32) ^ now ^ (apr_uintptr_t)pool ^
273 hash = hashfunc_default(key, &klen, ht->seed);
315 ht->seed = orig->seed;
441 res->seed = base->seed;
466 hash = hashfunc_default(iter->key, &iter->klen, res->seed);
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DMetaRenamer.cpp36 void srand(unsigned int seed) { argument
37 next = seed;
/macosx-10.10/OpenSSL098-52/src/crypto/ec/
H A Dec_asn1.c169 ASN1_BIT_STRING *seed; member in struct:x9_62_curve_st
240 ASN1_OPT(X9_62_CURVE, seed, ASN1_BIT_STRING)
523 /* set the seed (optional) */
524 if (group->seed)
526 if (!curve->seed)
527 if ((curve->seed = ASN1_BIT_STRING_new()) == NULL)
532 curve->seed->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07);
533 curve->seed->flags |= ASN1_STRING_FLAG_BITS_LEFT;
534 if (!ASN1_BIT_STRING_set(curve->seed, group->seed,
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Drand.h72 void (*seed)(const void *, int); member in struct:RAND_METHOD
/macosx-10.10/Heimdal-398.1.2/lib/otp/
H A Dotp.h72 char seed[17]; member in struct:__anon673
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-rand.h90 void (*seed)(const void *, int); member in struct:RAND_METHOD
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Drand.h83 void (*seed)(const void *buf, int num); member in struct:rand_meth_st
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dgenkey.h44 void seed(const CssmCryptoData &s) { mSeed = &s; set(CSSM_ATTRIBUTE_SEED, s); } function in class:Security::CssmClient::GenerateKey
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dgenkey.h44 void seed(const CssmCryptoData &s) { mSeed = &s; set(CSSM_ATTRIBUTE_SEED, s); } function in class:Security::CssmClient::GenerateKey
/macosx-10.10/Security-57031.1.35/Security/utilities/Regressions/
H A Dsu-41-secdb-stress.c85 static void SecDbDoReadOp(SecDbConnectionRef dbconn, size_t seed) { argument
86 switch (seed % 2) {
129 static void SecDbDoWriteOp(SecDbConnectionRef dbconn, size_t seed) { argument
130 switch (seed % 6) {
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGFETurbulenceElement.h117 DECLARE_ANIMATED_NUMBER(Seed, seed)
/macosx-10.10/removefile-35/
H A Dremovefile_priv.h53 void __removefile_init_random(const unsigned int seed, removefile_state_t state);
/macosx-10.10/ruby-106/ruby/test/minitest/
H A Dmetametameta.rb19 def assert_report expected, flags = %w[--seed 42]
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/generic/
H A Drandom.c521 unsigned long seed;
538 seed = time(NULL) + ((long)Tcl_GetCurrentThread() << 12);
539 memcpy(&instance->state.randrsl, &seed, sizeof(seed));
510 unsigned long seed; local

Completed in 148 milliseconds

1234567891011>>