HomeSort by relevance Sort by last modified time
    Searched defs:cip (Results 1 - 17 of 17) sorted by null

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherPBEThread.java 46 Cipher cip = Cipher.getInstance(getAlgName() + "/" + getMode() + "/" + local
52 cip.init(Cipher.ENCRYPT_MODE, key, parSpec);
53 cip.doFinal(input, 0, input.length, output);
54 int outputSize = cip.getOutputSize(input.length);
55 cip.init(Cipher.DECRYPT_MODE, key, parSpec);
56 cip.doFinal(output, 0, outputSize, decrypted);
CipherRSAThread.java 40 Cipher cip = Cipher.getInstance(getAlgName() + "/" + getMode() + "/" + local
42 cip.init(Cipher.ENCRYPT_MODE, kp.getPublic());
43 cip.doFinal(input, 0, input.length, output);
44 int outputSize = cip.getOutputSize(input.length);
45 cip.init(Cipher.DECRYPT_MODE, kp.getPrivate());
46 cip.doFinal(output, 0, outputSize, decrypted);
CipherSymmetricKeyThread.java 46 Cipher cip = Cipher.getInstance(getAlgName() + "/" + getMode() + "/" + local
56 cip.init(Cipher.ENCRYPT_MODE, key, ivspec);
57 cip.doFinal(input, 0, input.length, output);
58 outputSize = cip.getOutputSize(input.length);
59 iv = cip.getIV();
61 cip.init(Cipher.DECRYPT_MODE, key, ivspec);
62 cip.doFinal(output, 0, outputSize, decrypted);
64 cip.init(Cipher.ENCRYPT_MODE, key);
65 cip.doFinal(input, 0, input.length, output);
66 outputSize = cip.getOutputSize(input.length)
    [all...]
CipherWrapThread.java 37 Cipher cip = Cipher.getInstance(getAlgName()); local
39 cip.init(Cipher.WRAP_MODE, key);
40 byte[] output = cip.wrap(key);
41 cip.init(Cipher.UNWRAP_MODE, key);
42 Key decrypted = cip.unwrap(output, getAlgName(), Cipher.SECRET_KEY);
  /external/clang/test/CodeGen/
conditional.c 23 const int* cip; local
25 cip = 0 ? vp : cip;
  /external/clang/test/Sema/
conditional-expr.c 22 const int *cip; local
23 vp = (0 ? vp : cip); // expected-warning {{discards qualifiers}}
24 vp = (0 ? cip : vp); // expected-warning {{discards qualifiers}}
  /external/ppp/pppd/
ipv6cp.c 905 u_char *cip, *next; /* Pointer to current and next CIs */ local
926 cip = p = next; /* Remember begining of CI */
1045 if (ucp != cip)
1046 BCOPY(cip, ucp, cilen); /* Move it */
    [all...]
ipcp.c 1428 u_char *cip, *next; \/* Pointer to current and next CIs *\/ local
    [all...]
ipxcp.c 996 u_char *cip, *next; /* Pointer to current and next CIs */ local
1017 cip = p = next; /* Remember begining of CI */
1249 if (ucp != cip)
1250 BCOPY(cip, ucp, cilen); /* Move it */
    [all...]
lcp.c 1512 u_char *cip, *next; \/* Pointer to current and next CIs *\/ local
    [all...]
  /external/syslinux/core/fs/pxe/
pxe.h 97 uint32_t cip; /* Cient IP */ member in struct:bootp_t
  /external/syslinux/core/lwip/src/netif/ppp/
ipcp.c 877 u_char *cip, *next; /* Pointer to current and next CIs */ local
905 cip = p = next; /* Remember begining of CI */
1157 if (ucp != cip) {
1158 BCOPY(cip, ucp, cilen); /* Move it */
    [all...]
lcp.c 1231 u_char *cip, *next; \/* Pointer to current and next CIs *\/ local
    [all...]
  /external/libpng/contrib/libtests/
makepng.c 1463 chunk_insert *cip; local
    [all...]
  /external/syslinux/com32/include/syslinux/
pxe_api.h 74 in_addr_t cip; /* Client IP address */ member in struct:__anon31924
  /external/syslinux/gpxe/src/arch/i386/include/
pxe_api.h 356 IP4_t cip; member in struct:bootph
    [all...]
  /external/caliper/lib/
jersey-core-1.11.jar 

Completed in 601 milliseconds