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

1 2 3

  /external/epid-sdk/ext/ipp/sources/ippcp/
pcpsha512_init.c 59 IppStatus InitSHA512(IppsSHA512State* pState, const DigestSHA512 IV)
73 hashInit(HASH_VALUE(pState), IV);
  /external/python/cpython3/Lib/test/
dataclass_module_1.py 26 class IV:
dataclass_module_1_str.py 26 class IV:
dataclass_module_2.py 26 class IV:
dataclass_module_2_str.py 26 class IV:
  /external/nos/test/system-test-harness/src/test-data/NIST-CAVP/
aes-gcm-cavp.h 13 uint32_t IV[128];
    [all...]
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/java/security/
AlgorithmParametersTestGCM.java 35 private static final byte[] IV = new byte[] {
49 // iv=FORMAT:HEX,OCTETSTRING:040868C8FF6472F5040868C8
54 // iv=FORMAT:HEX,OCTETSTRING:040868C8FF6472F5040868C8
59 super("GCM", new AlgorithmParameterSymmetricHelper("AES", "GCM/NOPADDING", 128), new GCMParameterSpec(TLEN, IV));
73 params.init(new GCMParameterSpec(TLEN, IV));
88 assertTrue("Provider: " + p.getName(), Arrays.equals(IV, spec.getIV()));
94 assertTrue("Provider: " + p.getName(), Arrays.equals(IV, spec.getIV()));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 16 private byte[] IV;
39 this.IV = new byte[cipher.getBlockSize()];
45 * Initialise the cipher and, possibly, the initialisation vector (IV).
46 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
47 * An IV which is too short is handled in FIPS compliant fashion.
63 byte[] iv = ivParam.getIV();
65 if (iv.length < IV.length)
67 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
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 16 private byte[] IV;
42 this.IV = new byte[cipher.getBlockSize()];
49 * Initialise the cipher and, possibly, the initialisation vector (IV).
50 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
51 * 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 23 private byte[] IV;
39 this.IV = new byte[blockSize];
53 this.IV = Arrays.clone(ivParam.getIV());
55 if (blockSize < IV.length)
57 throw new IllegalArgumentException("CTR/SIC mode requires IV no greater than: " + blockSize + " bytes.");
62 if (blockSize - IV.length > maxCounterSize)
64 throw new IllegalArgumentException("CTR/SIC mode requires IV of at least: " + (blockSize - maxCounterSize) + " bytes.");
67 // if null it's an IV changed only.
125 // if the IV is the same as the blocksize we assume the user knows what they are doing
126 if (IV.length < blockSize
    [all...]
  /external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/java/security/
AlgorithmParametersTestGCM.java 39 private static final byte[] IV = new byte[] {
53 // iv=FORMAT:HEX,OCTETSTRING:040868C8FF6472F5040868C8
58 // iv=FORMAT:HEX,OCTETSTRING:040868C8FF6472F5040868C8
63 super("GCM", new AlgorithmParameterSymmetricHelper("AES", "GCM/NOPADDING", 128), new GCMParameterSpec(TLEN, IV));
77 params.init(new GCMParameterSpec(TLEN, IV));
92 assertTrue("Provider: " + p.getName(), Arrays.equals(IV, spec.getIV()));
98 assertTrue("Provider: " + p.getName(), Arrays.equals(IV, spec.getIV()));
  /external/swiftshader/third_party/LLVM/lib/Analysis/
SparsePropagation.cpp 234 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this);
235 if (IV != LatticeFunc->getUntrackedVal())
236 UpdateState(PN, IV);
284 LatticeVal IV = LatticeFunc->ComputeInstructionState(I, *this);
285 if (IV != LatticeFunc->getUntrackedVal())
286 UpdateState(I, IV);
LoopInfo.cpp 179 PHINode *IV = getCanonicalInductionVariable();
180 if (IV == 0 || IV->getNumIncomingValues() != 2) return 0;
182 bool P0InLoop = contains(IV->getIncomingBlock(0));
183 Value *Inc = IV->getIncomingValue(!P0InLoop);
184 BasicBlock *BackedgeBlock = IV->getIncomingBlock(!P0InLoop);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/
CBCBlockCipher.java 17 private byte[] IV;
36 this.IV = new byte[blockSize];
52 * Initialise the cipher and, possibly, the initialisation vector (IV).
53 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
73 byte[] iv = ivParam.getIV();
75 if (iv.length != blockSize)
80 System.arraycopy(iv, 0, IV, 0, iv.length)
    [all...]
CFBBlockCipher.java 18 private byte[] IV;
44 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.
71 byte[] iv = ivParam.getIV();
73 if (iv.length < IV.length)
75 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
OFBBlockCipher.java 18 private byte[] IV;
41 this.IV = new byte[cipher.getBlockSize()];
47 * Initialise the cipher and, possibly, the initialisation vector (IV).
48 * If an IV isn't passed as part of the parameter, the IV will be all zeros.
49 * An IV which is too short is handled in FIPS compliant fashion.
65 byte[] iv = ivParam.getIV();
67 if (iv.length < IV.length)
69 // prepend the supplied IV with zeros (per FIPS PUB 81
    [all...]
SICBlockCipher.java 25 private byte[] IV;
41 this.IV = new byte[blockSize];
55 this.IV = Arrays.clone(ivParam.getIV());
57 if (blockSize < IV.length)
59 throw new IllegalArgumentException("CTR/SIC mode requires IV no greater than: " + blockSize + " bytes.");
64 if (blockSize - IV.length > maxCounterSize)
66 throw new IllegalArgumentException("CTR/SIC mode requires IV of at least: " + (blockSize - maxCounterSize) + " bytes.");
69 // if null it's an IV changed only.
127 // if the IV is the same as the blocksize we assume the user knows what they are doing
128 if (IV.length < blockSize
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 81 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex);
83 << " ivar '" << IV->getDecl()->getName() << "')";
84 SourceLocation L = IV->getLocation();
166 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S);
167 os << "Access to instance variable '" << *IV->getDecl()
169 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);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 140 Constant *IV = ConstantInt::get(Context, APInt(32, InitialValue));
145 IV,
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 140 Constant *IV = ConstantInt::get(Context, APInt(32, InitialValue));
145 IV,
  /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);
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 406 Value *IV = PN->getIncomingValue(i);
410 NewPN->addIncoming(IV, IBB);
413 UniqueValue = IV;
414 else if (UniqueValue != IV)
    [all...]

Completed in 578 milliseconds

1 2 3