HomeSort by relevance Sort by last modified time
    Searched refs:macs (Results 1 - 25 of 32) sorted by null

1 2

  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java 296 Mac [] macs = createMacs(); local
297 assertNotNull("Mac objects were not created", macs);
300 for (int i = 0; i < macs.length; i++) {
302 macs[i].update((byte)0); method
307 macs[i].update(buf);
312 macs[i].update(buf, 0, 3);
317 macs[i].update(bBuf);
322 macs[i].doFinal();
327 macs[i].doFinal(new byte[10]);
332 macs[i].doFinal(new byte[10], 0)
351 Mac[] macs = createMacs(); local
399 Mac [] macs = createMacs(); local
425 Mac [] macs = createMacs(); local
460 Mac [] macs = createMacs(); local
501 Mac [] macs = createMacs(); local
521 macs[i].update((byte)5); method
541 Mac [] macs = createMacs(); local
568 Mac [] macs = createMacs(); local
608 Mac [] macs = createMacs(); local
651 Mac [] macs = createMacs(); local
684 Mac [] macs = createMacs(); local
705 Mac [] macs = createMacs(); local
721 Mac [] macs = createMacs(); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java 306 Mac [] macs = createMacs(); local
307 assertNotNull("Mac objects were not created", macs);
312 for (int i = 0; i < macs.length; i++) {
314 macs[i].update((byte)0); method
319 macs[i].update(buf);
324 macs[i].update(buf, 0, 3);
329 macs[i].update(bBuf);
334 macs[i].doFinal();
339 macs[i].doFinal(new byte[10]);
344 macs[i].doFinal(new byte[10], 0)
371 Mac[] macs = createMacs(); local
419 Mac [] macs = createMacs(); local
445 Mac [] macs = createMacs(); local
479 Mac [] macs = createMacs(); local
520 Mac [] macs = createMacs(); local
540 macs[i].update((byte)5); method
560 Mac [] macs = createMacs(); local
587 Mac [] macs = createMacs(); local
636 Mac [] macs = createMacs(); local
679 Mac [] macs = createMacs(); local
712 Mac [] macs = createMacs(); local
733 Mac [] macs = createMacs(); local
749 Mac [] macs = createMacs(); local
    [all...]
  /external/openssh/regress/
cipher-speed.sh 19 macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96"
21 macs="$macs hmac-sha2-256 hmac-sha2-256-96 hmac-sha2-512 hmac-sha2-512-96"
23 for c in $ciphers; do for m in $macs; do
try-ciphers.sh 10 macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96"
12 macs="$macs hmac-sha2-256 hmac-sha2-256-96 hmac-sha2-512 hmac-sha2-512-96"
15 for m in $macs; do
42 for m in $macs; do
ssh-com.sh 91 macs="hmac-md5"
95 macs="$macs hmac-sha1 hmac-sha1-96 hmac-md5-96"
99 macs="$macs hmac-sha1 hmac-sha1-96 hmac-md5-96"
103 for m in $macs; do
  /external/openssh/
mac.c 57 } macs[] = { variable in typeref:struct:__anon12438
78 mac->type = macs[which].type;
80 mac->evp_md = (*macs[which].mdfunc)();
85 mac->mac_len = macs[which].len / 8;
86 mac->key_len = macs[which].key_len / 8;
89 if (macs[which].truncatebits != 0)
90 mac->mac_len = macs[which].truncatebits / 8;
98 for (i = 0; macs[i].name; i++) {
99 if (strcmp(name, macs[i].name) == 0) {
191 debug3("macs ok: [%s]", names)
    [all...]
readconf.h 77 char *macs; /* SSH2 macs in order of preference. */ member in struct:__anon12452
servconf.h 82 char *macs; /* Supported SSH2 macs. */ member in struct:__anon12459
readconf.c 188 { "macs", oMacs },
713 if (*activep && options->macs == NULL)
714 options->macs = xstrdup(arg);
    [all...]
servconf.c 119 options->macs = NULL;
427 { "macs", sMacs, SSHCFG_GLOBAL },
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
MAC.java 25 public static void checkMacList(String[] macs)
27 for (int i = 0; i < macs.length; i++)
28 getKeyLen(macs[i]);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
MD5.java 7 import org.bouncycastle.crypto.macs.HMac;
SHA1.java 8 import org.bouncycastle.crypto.macs.HMac;
SHA256.java 7 import org.bouncycastle.crypto.macs.HMac;
SHA384.java 7 import org.bouncycastle.crypto.macs.HMac;
SHA512.java 7 import org.bouncycastle.crypto.macs.HMac;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseMac.java 32 import org.bouncycastle.crypto.macs.CBCBlockCipherMac;
34 // import org.bouncycastle.crypto.macs.CFBBlockCipherMac;
35 // import org.bouncycastle.crypto.macs.GOST28147Mac;
37 import org.bouncycastle.crypto.macs.HMac;
39 // import org.bouncycastle.crypto.macs.ISO9797Alg3Mac;
40 // import org.bouncycastle.crypto.macs.OldHMac;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEMac.java 34 import org.bouncycastle.crypto.macs.CBCBlockCipherMac;
36 // import org.bouncycastle.crypto.macs.CFBBlockCipherMac;
38 import org.bouncycastle.crypto.macs.HMac;
40 // import org.bouncycastle.crypto.macs.ISO9797Alg3Mac;
41 // import org.bouncycastle.crypto.macs.OldHMac;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS5S2ParametersGenerator.java 10 import org.bouncycastle.crypto.macs.HMac;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
CBCBlockCipherMac.java 1 package org.bouncycastle.crypto.macs;
HMac.java 1 package org.bouncycastle.crypto.macs;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DES.java 23 import org.bouncycastle.crypto.macs.CBCBlockCipherMac;
25 // import org.bouncycastle.crypto.macs.CFBBlockCipherMac;
26 // import org.bouncycastle.crypto.macs.CMac;
DESede.java 29 import org.bouncycastle.crypto.macs.CBCBlockCipherMac;
31 // import org.bouncycastle.crypto.macs.CFBBlockCipherMac;
32 // import org.bouncycastle.crypto.macs.CMac;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 10 import org.bouncycastle.crypto.macs.CBCBlockCipherMac;

Completed in 563 milliseconds

1 2