OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Cipher
(Results
1 - 12
of
12
) sorted by null
/external/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/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
...]
/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/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
...]
/prebuilt/sdk/11/
android.jar
/prebuilt/sdk/12/
android.jar
/prebuilt/sdk/13/
android.jar
/prebuilt/sdk/4/
android.jar
/prebuilt/sdk/5/
android.jar
/prebuilt/sdk/6/
android.jar
/prebuilt/sdk/8/
android.jar
/prebuilt/sdk/9/
android.jar
Completed in 97 milliseconds