HomeSort by relevance Sort by last modified time
    Searched defs:IV (Results 1 - 25 of 33) sorted by null

1 2

  /libcore/benchmarks/src/benchmarks/regression/
CipherInputStreamBenchmark.java 47 private static final byte[] IV = new byte[IV_SIZE];
54 IV[i] = (byte) i;
71 spec = new IvParameterSpec(IV);
CipherBenchmark.java 44 private static final byte[] IV = new byte[IV_SIZE];
51 IV[i] = (byte) i;
127 spec = new IvParameterSpec(IV);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 14 private byte[] IV;
35 this.IV = new byte[cipher.getBlockSize()];
51 * Initialise the cipher and, possibly, the initialisation vector (IV).
52 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
53 * An IV which is too short is handled in FIPS compliant fashion.
69 byte[] iv = ivParam.getIV();
71 if (iv.length < IV.length)
73 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
SICBlockCipher.java 18 private byte[] IV;
32 this.IV = new byte[blockSize];
57 byte[] iv = ivParam.getIV();
58 System.arraycopy(iv, 0, IV, 0, IV.length);
62 // if null it's an IV changed only.
110 System.arraycopy(IV, 0, counter, 0, counter.length);
CBCBlockCipher.java 15 private byte[] IV;
34 this.IV = new byte[blockSize];
50 * Initialise the cipher and, possibly, the initialisation vector (IV).
51 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
71 byte[] iv = ivParam.getIV();
73 if (iv.length != blockSize)
78 System.arraycopy(iv, 0, IV, 0, iv.length)
    [all...]
CFBBlockCipher.java 15 private byte[] IV;
37 this.IV = new byte[cipher.getBlockSize()];
53 * Initialise the cipher and, possibly, the initialisation vector (IV).
54 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
55 * An IV which is too short is handled in FIPS compliant fashion.
73 byte[] iv = ivParam.getIV();
75 if (iv.length < IV.length)
77 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 80 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex);
82 << " ivar '" << IV->getDecl()->getName() << "')";
83 SourceLocation L = IV->getLocation();
151 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S);
152 os << "Access to instance variable '" << *IV->getDecl()
154 AddDerefSource(os, Ranges, IV->getBase()->IgnoreParenCasts(),
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.h 44 #define MAX_IV_SIZE 16 /* # bytes needed to represent an IV */
70 u_int8_t IV[MAX_IV_SIZE]; /* A possible Initialization Vector for ciphering */
86 int rijndael_cipherInit(cipherInstance *cipher, u_int8_t mode, char *IV);
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 235 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this);
236 if (IV != LatticeFunc->getUntrackedVal())
237 UpdateState(PN, IV);
285 LatticeVal IV = LatticeFunc->ComputeInstructionState(I, *this);
286 if (IV != LatticeFunc->getUntrackedVal())
287 UpdateState(I, IV);
InstructionSimplify.cpp     [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 133 Constant *IV = ConstantInt::get(Context, APInt(32, InitialValue));
138 IV,
  /art/test/100-reflect2/src/
Main.java 179 m = Main.class.getDeclaredMethod("IV", int.class);
238 private static void IV(int i) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SystemUIModes.java 54 public static class IV extends ImageView implements View.OnSystemUiVisibilityChangeListener {
57 public IV(Context context) {
60 public IV(Context context, AttributeSet attrs) {
177 IV mImage;
195 mImage = (IV) findViewById(R.id.image);