HomeSort by relevance Sort by last modified time
    Searched defs:rounds (Results 1 - 25 of 33) sorted by null

1 2

  /external/openssl/crypto/evp/
e_rc5.c 75 int rounds; /* number of rounds */ member in struct:__anon12619
92 data(c)->rounds = RC5_12_ROUNDS;
96 *(int *)ptr = data(c)->rounds;
105 data(c)->rounds = arg;
122 key,data(ctx)->rounds);
  /external/qemu/
aes.h 9 int rounds; member in struct:aes_key_st
  /external/openssl/crypto/aes/
aes.h 82 int rounds; member in struct:aes_key_st
  /external/openssl/include/openssl/
aes.h 82 int rounds; member in struct:aes_key_st
  /external/chromium/crypto/
symmetric_key_unittest.cc 72 unsigned int rounds; member in struct:PBKDF2TestVector
86 if (strlen(test_data.salt) < 8 || test_data.rounds < 1000) {
96 test_data.rounds, test_data.key_size_in_bits));
  /libcore/luni/src/main/java/javax/crypto/spec/
RC5ParameterSpec.java 30 private final int rounds; field in class:RC5ParameterSpec
40 * @param rounds
45 public RC5ParameterSpec(int version, int rounds, int wordSize) {
47 this.rounds = rounds;
63 * @param rounds
73 public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) {
81 this.rounds = rounds;
98 * @param rounds
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
RC5ParameterSpecTest.java 38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
45 int rounds = 5; local
50 new RC5ParameterSpec(version, rounds, wordSize, null);
57 new RC5ParameterSpec(version, rounds, wordSize+8, iv);
64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3});
70 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds,
79 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int
86 int rounds = 5; local
92 new RC5ParameterSpec(version, rounds, wordSize, null, offset);
99 new RC5ParameterSpec(version, rounds, wordSize+8, iv, offset)
142 int rounds = 5; local
157 int rounds = 5; local
172 int rounds = 5; local
189 int rounds = 5; local
216 int rounds = 5; local
266 int rounds = 5; local
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/
kseed.c 198 @param num_rounds The number of rounds desired (0 for default)
241 static void rounds(ulong32 *P, ulong32 *K) function
266 rounds(P, skey->kseed.K);
288 rounds(P, skey->kseed.dK);
  /external/dropbear/libtomcrypt/src/ciphers/safer/
saferp.c 212 @param num_rounds The number of rounds desired (0 for default)
220 static const int rounds[3] = { 8, 12, 16 }; local
230 /* Is the number of rounds valid? Either use zero for default or
231 * 8,12,16 rounds for 16,24,32 byte keys
233 if (num_rounds != 0 && num_rounds != rounds[(keylen/8)-2]) {
265 skey->saferp.rounds = 8;
292 skey->saferp.rounds = 12;
319 skey->saferp.rounds = 16;
343 /* do eight rounds */
356 if (skey->saferp.rounds > 8)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
RC5ParameterSpecTest.java 38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
45 int rounds = 5; local
50 new RC5ParameterSpec(version, rounds, wordSize, null);
57 new RC5ParameterSpec(version, rounds, wordSize+8, iv);
64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3});
70 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds,
79 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int
86 int rounds = 5; local
92 new RC5ParameterSpec(version, rounds, wordSize, null, offset);
99 new RC5ParameterSpec(version, rounds, wordSize+8, iv, offset)
142 int rounds = 5; local
157 int rounds = 5; local
172 int rounds = 5; local
189 int rounds = 5; local
216 int rounds = 5; local
266 int rounds = 5; local
280 int rounds = 5; local
    [all...]
  /external/openssh/
auth2-jpake.c 223 long long rounds; local
237 rounds = strtonum(rounds_s, 1, 1<<31, NULL);
246 rounds = MAX(rounds, 7250);
247 rounds = MIN(rounds, (1<<24) - 1);
249 pw_encode64(rounds), pw_encode64(rounds >> 6),
250 pw_encode64(rounds >> 12), pw_encode64(rounds >> 18)
    [all...]
key.c 417 u_int i, j = 0, rounds, seed = 1; local
420 rounds = (dgst_raw_len / 2) + 1;
421 retval = xcalloc((rounds * 6), sizeof(char));
423 for (i = 0; i < rounds; i++) {
425 if ((i + 1 < rounds) || (dgst_raw_len % 2 != 0)) {
434 if ((i + 1) < rounds) {
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
KnownHosts.java 885 int rounds = (raw.length / 2) + 1; local
889 for (int i = 0; i < rounds; i++)
891 if (((i + 1) < rounds) || ((raw.length) % 2 != 0))
897 if ((i + 1) < rounds)
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_cipher.h 15 int rounds; member in struct:rc5_key
29 long rounds; member in struct:saferp_key
329 /** default number of rounds */
334 @param num_rounds The requested number of rounds (0==default)
  /external/freetype/src/autofit/
aflatin.c 191 FT_Pos rounds[AF_LATIN_MAX_TEST_CHARACTERS]; local
347 rounds[num_rounds++] = best_y;
364 /* we have computed the contents of the `rounds' and `flats' tables, */
367 af_sort_pos( num_rounds, rounds );
379 *blue_shoot = rounds[num_rounds / 2];
389 *blue_shoot = rounds[num_rounds / 2];
    [all...]
aflatin2.c 187 FT_Pos rounds[AF_LATIN_MAX_TEST_CHARACTERS]; local
340 rounds[num_rounds++] = best_y;
357 /* we have computed the contents of the `rounds' and `flats' tables, */
360 af_sort_pos( num_rounds, rounds );
372 *blue_shoot = rounds[num_rounds / 2];
382 *blue_shoot = rounds[num_rounds / 2];
    [all...]
  /external/chromium/net/http/
http_network_transaction_unittest.cc 7234 TestRound rounds[3]; member in struct:net::TestConfig
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 3233 int rounds = Integer.parseInt(readHeaderLine(rawInStream)); \/\/ 7 local
    [all...]
  /external/v8/test/cctest/
test-api.cc 11650 int rounds = 0; local
11772 int rounds = 0; local
    [all...]
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 652 milliseconds

1 2