HomeSort by relevance Sort by last modified time
    Searched defs:cip (Results 1 - 11 of 11) 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;
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_obj.h 54 PERF_Custom_Private cip; member in struct:PERF_Private
  /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 896 u_char *cip, *next; /* Pointer to current and next CIs */ local
917 cip = p = next; /* Remember begining of CI */
1036 if (ucp != cip)
1037 BCOPY(cip, ucp, cilen); /* Move it */
    [all...]
ipcp.c 1327 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 1489 u_char *cip, *next; \/* Pointer to current and next CIs *\/ local
    [all...]

Completed in 2453 milliseconds