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

  /external/chromium_org/third_party/tlslite/tlslite/utils/
PyCrypto_AES.py 7 import Crypto.Cipher.AES
16 self.context = Crypto.Cipher.AES.new(key, mode, IV)
PyCrypto_RC4.py 7 import Crypto.Cipher.ARC4
16 self.context = Crypto.Cipher.ARC4.new(key)
PyCrypto_TripleDES.py 7 import Crypto.Cipher.DES3
16 self.context = Crypto.Cipher.DES3.new(key, mode, IV)
cryptomath.py 63 import Crypto.Cipher.AES
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
crypto-aes.js 4 * AES Cipher function: encrypt 'input' with Rijndael algorithm
13 function Cipher(input, w) { // main Cipher function [§5.1]
161 * - outputblock = cipher(counter, key)
167 // for this example script, generate the key by applying Cipher to 1st 16/24/32 chars of password;
172 var key = Cipher(pwBytes, KeyExpansion(pwBytes));
197 var cipherCntr = Cipher(counterBlock, keySchedule); // -- encrypt counter block --
227 * - outputblock = cipher(counter, key)
237 var key = Cipher(pwBytes, pwKeySchedule);
257 var cipherCntr = Cipher(counterBlock, keySchedule); // encrypt counter bloc
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
crypto-aes.js 4 * AES Cipher function: encrypt 'input' with Rijndael algorithm
13 function Cipher(input, w) { // main Cipher function [§5.1]
161 * - outputblock = cipher(counter, key)
167 // for this example script, generate the key by applying Cipher to 1st 16/24/32 chars of password;
172 var key = Cipher(pwBytes, KeyExpansion(pwBytes));
197 var cipherCntr = Cipher(counterBlock, keySchedule); // -- encrypt counter block --
227 * - outputblock = cipher(counter, key)
237 var key = Cipher(pwBytes, pwKeySchedule);
257 var cipherCntr = Cipher(counterBlock, keySchedule); // encrypt counter bloc
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
crypto-aes.js 4 * AES Cipher function: encrypt 'input' with Rijndael algorithm
13 function Cipher(input, w) { // main Cipher function [§5.1]
161 * - outputblock = cipher(counter, key)
167 // for this example script, generate the key by applying Cipher to 1st 16/24/32 chars of password;
172 var key = Cipher(pwBytes, KeyExpansion(pwBytes));
197 var cipherCntr = Cipher(counterBlock, keySchedule); // -- encrypt counter block --
227 * - outputblock = cipher(counter, key)
237 var key = Cipher(pwBytes, pwKeySchedule);
257 var cipherCntr = Cipher(counterBlock, keySchedule); // encrypt counter bloc
    [all...]
  /external/openssh/
cipher.h 1 /* $OpenBSD: cipher.h,v 1.37 2009/01/26 09:58:15 markus Exp $ */
42 * Cipher types for SSH-1. New types can be added, but old types should not
46 #define SSH_CIPHER_INVALID -2 /* No valid cipher selected. */
61 typedef struct Cipher Cipher;
64 struct Cipher;
68 Cipher *cipher; member in struct:CipherContext
72 Cipher *cipher_by_name(const char *);
73 Cipher *cipher_by_number(int)
    [all...]
cipher.c 1 /* $OpenBSD: cipher.c,v 1.82 2009/01/26 09:58:15 markus Exp $ */
49 #include "cipher.h"
60 struct Cipher {
99 cipher_blocksize(const Cipher *c)
105 cipher_keylen(const Cipher *c)
111 cipher_get_number(const Cipher *c)
117 cipher_is_cbc(const Cipher *c)
134 Cipher *
137 Cipher *c;
144 Cipher *
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 40 * encryption and decryption. Cipher classes can not be instantiated directly,
41 * one has to call the Cipher's {@code getInstance} method with the name of a
55 * {@code Cipher c = Cipher.getInstance("AES/CBC/PKCS5Padding");}
57 * When a block cipher is requested in in stream cipher mode, the number of bits
62 public class Cipher {
104 private static final String SERVICE = "Cipher";
129 * Creates a new Cipher instance.
132 * the implementation delegate of the cipher
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/dropbear/libtomcrypt/
crypt.tex 125 block cipher and hash function to ensure that they compile and execute to the published design specifications. The library
180 mode routines for every single cipher. That means every time you add or remove a cipher from the library
182 are not directly tied to the ciphers. That is a new cipher can be added to the library by simply providing
184 can make use of the cipher right away.
254 related issue is if you use the same symmetric cipher, hash or public key state data in multiple threads. Normally
412 functions which are (given that XXX is the name of the cipher) the following:
413 \index{Cipher Setup}
421 The XXX\_setup() routine will setup the cipher to be used with a given number of rounds and a given key length (in bytes).
425 that you should only used this scheduled key with the intended cipher. For example, if you call \textit{blowfish\_setup()} do not
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 499 milliseconds