Home
last modified time | relevance | path

Searched refs:IV (Results 1 – 25 of 104) sorted by relevance

12345

/NextBSD/sys/crypto/rijndael/
HDrijndael-api-fst.c72 int rijndael_cipherInit(cipherInstance *cipher, BYTE mode, char *IV) { in rijndael_cipherInit() argument
78 if (IV != NULL) { in rijndael_cipherInit()
79 memcpy(cipher->IV, IV, RIJNDAEL_MAX_IV_SIZE); in rijndael_cipherInit()
81 memset(cipher->IV, 0, RIJNDAEL_MAX_IV_SIZE); in rijndael_cipherInit()
113 memcpy(block, cipher->IV, 16); in rijndael_blockEncrypt()
120 ((u_int32_t*)block)[0] = ((u_int32_t*)cipher->IV)[0] ^ ((u_int32_t*)input)[0]; in rijndael_blockEncrypt()
121 ((u_int32_t*)block)[1] = ((u_int32_t*)cipher->IV)[1] ^ ((u_int32_t*)input)[1]; in rijndael_blockEncrypt()
122 ((u_int32_t*)block)[2] = ((u_int32_t*)cipher->IV)[2] ^ ((u_int32_t*)input)[2]; in rijndael_blockEncrypt()
123 ((u_int32_t*)block)[3] = ((u_int32_t*)cipher->IV)[3] ^ ((u_int32_t*)input)[3]; in rijndael_blockEncrypt()
149 memcpy(iv, cipher->IV, 16); in rijndael_blockEncrypt()
[all …]
HDrijndael-api-fst.h54 u_int8_t IV[RIJNDAEL_MAX_IV_SIZE]; /* A possible Initialization Vector for ciphering */ member
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDSCCP.cpp231 LatticeVal &IV = TrackedGlobals[GV]; in TrackValueOfGlobalVariable() local
233 IV.markConstant(GV->getInitializer()); in TrackValueOfGlobalVariable()
308 void markConstant(LatticeVal &IV, Value *V, Constant *C) { in markConstant() argument
309 if (!IV.markConstant(C)) return; in markConstant()
311 if (IV.isOverdefined()) in markConstant()
324 LatticeVal &IV = ValueState[V]; in markForcedConstant() local
325 IV.markForcedConstant(C); in markForcedConstant()
327 if (IV.isOverdefined()) in markForcedConstant()
337 void markOverdefined(LatticeVal &IV, Value *V) { in markOverdefined() argument
338 if (!IV.markOverdefined()) return; in markOverdefined()
[all …]
HDLoopRerollPass.cpp367 DAGRootTracker(LoopReroll *Parent, Loop *L, Instruction *IV, in DAGRootTracker()
370 : Parent(Parent), L(L), SE(SE), AA(AA), TLI(TLI), IV(IV) {} in DAGRootTracker()
418 Instruction *IV; member
438 bool reroll(Instruction *IV, Loop *L, BasicBlock *Header, const SCEV *IterCount,
657 static bool isLoopIncrement(User *U, Instruction *IV) { in isLoopIncrement() argument
664 if (PN && PN == IV) in isLoopIncrement()
677 if (isLoopIncrement(I, IV)) { in collectPossibleRoots()
759 I != IV && in findRootsRecursive()
822 const SCEVAddRecExpr *RealIVSCEV = cast<SCEVAddRecExpr>(SE->getSCEV(IV)); in findRoots()
828 for (auto *IVU : IV->users()) { in findRoots()
[all …]
/NextBSD/contrib/file/magic/Magdir/
HDdatabase248 # dBASE IV no memo file
249 >>0 ubyte 0x04 dBase IV
261 # dBASE IV SQL, no memo;dbv memo var size (Flagship)
262 >>0 ubyte 0x43 dBase IV, with SQL table
265 #>>0 ubyte 0x62 dBase IV, with SQL table
267 # dBASE IV, with memo!!
268 >>0 ubyte 0x7b dBase IV, with memo
271 #>>0 ubyte 0x82 dBase IV, with SQL system
282 # dBASE IV with memo!
283 >>0 ubyte 0x8B dBase IV, with memo .DBT
[all …]
/NextBSD/crypto/openssl/doc/crypto/
HDEVP_BytesToKey.pod18 EVP_BytesToKey() derives a key and IV from various parameters. B<type> is
19 the cipher to derive the key and IV for. B<md> is the message digest to use.
23 iteration count to use. The derived key and IV will be written to B<key>
35 If the total key and IV length is less than the digest length and
44 The key and IV is derived by concatenating D_1, D_2, etc until
45 enough data is available for the key and IV. D_i is defined as:
54 the IV.
HDEVP_SealInit.pod22 encryption. They generate a random key and IV (if required) then
27 with cipher B<type> using a random secret key and IV. B<type> is normally
37 The B<iv> parameter is a buffer where the generated IV is written to. It must
38 contain enough room for the corresponding cipher's IV, as determined by (for
41 If the cipher does not require an IV then the B<iv> parameter is ignored
HDEVP_EncryptInit.pod116 and B<iv> is the IV to use (if necessary), the actual number of bytes
117 used for the key and IV depends on the cipher. It is possible to set
200 EVP_CIPHER_iv_length() and EVP_CIPHER_CTX_iv_length() return the IV
202 It will return zero if the cipher does not use an IV. The constant
203 B<EVP_MAX_IV_LENGTH> is the maximum IV length for all ciphers.
227 IV. The cipher IV (if any) must be set when this call is made. This call
234 In the case of RC2, for example, it will set the IV and effective key length.
236 the key is set. For example EVP_CipherInit() will be called with the IV and
272 EVP_CIPHER_iv_length() and EVP_CIPHER_CTX_iv_length() return the IV
273 length or zero if the cipher does not use an IV.
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDDereferenceChecker.cpp80 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); in AddDerefSource() local
82 << " ivar '" << IV->getDecl()->getName() << "')"; in AddDerefSource()
83 SourceLocation L = IV->getLocation(); in AddDerefSource()
151 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S); in reportBug() local
152 os << "Access to instance variable '" << *IV->getDecl() in reportBug()
154 AddDerefSource(os, Ranges, IV->getBase()->IgnoreParenCasts(), in reportBug()
/NextBSD/contrib/llvm/lib/Analysis/
HDSparsePropagation.cpp235 LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this); in visitPHINode() local
236 if (IV != LatticeFunc->getUntrackedVal()) in visitPHINode()
237 UpdateState(PN, IV); in visitPHINode()
285 LatticeVal IV = LatticeFunc->ComputeInstructionState(I, *this); in visitInst() local
286 if (IV != LatticeFunc->getUntrackedVal()) in visitInst()
287 UpdateState(I, IV); in visitInst()
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDDwarfDebug.cpp664 DwarfDebug::getExistingAbstractVariable(InlinedVariable IV, in getExistingAbstractVariable() argument
667 Cleansed = IV.first; in getExistingAbstractVariable()
674 DbgVariable *DwarfDebug::getExistingAbstractVariable(InlinedVariable IV) { in getExistingAbstractVariable() argument
676 return getExistingAbstractVariable(IV, Cleansed); in getExistingAbstractVariable()
686 void DwarfDebug::ensureAbstractVariableIsCreated(InlinedVariable IV, in ensureAbstractVariableIsCreated() argument
689 if (getExistingAbstractVariable(IV, Cleansed)) in ensureAbstractVariableIsCreated()
697 InlinedVariable IV, const MDNode *ScopeNode) { in ensureAbstractVariableIsCreatedIfScoped() argument
699 if (getExistingAbstractVariable(IV, Cleansed)) in ensureAbstractVariableIsCreatedIfScoped()
872 InlinedVariable IV) { in createConcreteVariable() argument
873 ensureAbstractVariableIsCreatedIfScoped(IV, Scope.getScopeNode()); in createConcreteVariable()
[all …]
HDDwarfDebug.h361 DbgVariable *getExistingAbstractVariable(InlinedVariable IV,
363 DbgVariable *getExistingAbstractVariable(InlinedVariable IV);
370 DbgVariable *createConcreteVariable(LexicalScope &Scope, InlinedVariable IV);
/NextBSD/crypto/openssl/doc/apps/
HDenc.pod20 [B<-iv IV>]
117 of hex digits. If only the key is specified, the IV must additionally specified
119 key given with the B<-K> option will be used and the IV generated from the
123 =item B<-iv IV>
125 the actual IV to use: this must be represented as a string comprised only
127 IV must explicitly be defined. When a password is being specified using
128 one of the other options, the IV is generated from this password.
132 print out the key and IV used.
136 print out the key and IV used then immediately exit: don't do any encryption
180 A password will be prompted for to derive the key and IV if necessary.
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaExprMember.cpp1278 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); in LookupMemberExpr() local
1280 if (!IV) { in LookupMemberExpr()
1287 IV = Corrected.getCorrectionDeclAs<ObjCIvarDecl>(); in LookupMemberExpr()
1295 Decl *D = cast<Decl>(IV->getDeclContext()); in LookupMemberExpr()
1319 if (IV->isInvalidDecl()) in LookupMemberExpr()
1323 if (S.DiagnoseUseOfDecl(IV, MemberLoc)) in LookupMemberExpr()
1325 if (IV->getAccessControl() != ObjCIvarDecl::Public && in LookupMemberExpr()
1326 IV->getAccessControl() != ObjCIvarDecl::Package) { in LookupMemberExpr()
1345 if (IV->getAccessControl() == ObjCIvarDecl::Private) { in LookupMemberExpr()
1349 << IV->getDeclName(); in LookupMemberExpr()
[all …]
/NextBSD/usr.bin/calendar/calendars/
HDcalendar.judaic38 2010/Apr/2* Pesach IV (CH''M)
74 2010/Sep/26* Sukkot IV (CH''M)
117 2011/4/22* Pesach IV (CH''M)
153 2011/10/16* Sukkot IV (CH''M)
192 2012/4/10* Pesach IV (CH''M)
228 2012/10/4* Sukkot IV (CH''M)
266 2013/3/29* Pesach IV (CH''M)
302 2013/9/22* Sukkot IV (CH''M)
345 2014/4/18* Pesach IV (CH''M)
381 2014/10/12* Sukkot IV (CH''M)
[all …]
/NextBSD/contrib/llvm/include/llvm/ADT/
HDPointerIntPair.h174 uintptr_t IV = reinterpret_cast<uintptr_t>(V.getOpaqueValue());
175 return unsigned(IV) ^ unsigned(IV >> 9);
/NextBSD/tools/tools/net80211/wesside/
HDREADME15 * Generates traffic on the network for weak IV attack:
21 [dics] and a packet with a known IV traverses the network.
/NextBSD/contrib/subversion/
HDREADME12 IV. QUICKSTART GUIDE
58 IV. QUICKSTART GUIDE
/NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/
HDTransZeroOutPropsInDealloc.cpp170 if (ObjCIvarRefExpr *IV = dyn_cast<ObjCIvarRefExpr>(LHS)) { in isZeroingPropIvar() local
171 ObjCIvarDecl *IVDecl = IV->getDecl(); in isZeroingPropIvar()
/NextBSD/contrib/llvm/lib/Target/Mips/
HDMips.td99 "Subset of MIPS-IV that is also in MIPS32 "
102 "Subset of MIPS-IV that is also in MIPS32r2 "
105 "Mips4", "MIPS IV ISA Support",
/NextBSD/crypto/openssl/crypto/evp/
HDevptests.txt80 # AES-bits-CBC:key:IV/ciphertext':plaintext:ciphertext:encdec
98 # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec
130 # AES-bits-CFB:key:IV/output':plaintext:ciphertext:encdec
231 # CAMELLIA-bits-CBC:key:IV/ciphertext':plaintext:ciphertext:encdec
252 # CAMELLIA-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec
290 # CAMELLIA-bits-OFB:key:IV/output':plaintext:ciphertext:encdec
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
HDRewriteModernObjC.cpp373 unsigned ObjCIvarBitfieldGroupNo(ObjCIvarDecl *IV);
375 void ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result);
377 void ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result);
379 void ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result);
381 QualType GetGroupRecordTypeForObjCIvarBitfield(ObjCIvarDecl *IV);
383 ObjCIvarDecl *IV,
467 Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV);
3845 unsigned RewriteModernObjC::ObjCIvarBitfieldGroupNo(ObjCIvarDecl *IV) { in ObjCIvarBitfieldGroupNo() argument
3846 const ObjCInterfaceDecl *CDecl = IV->getContainingInterface(); in ObjCIvarBitfieldGroupNo()
3848 return IvarGroupNumber[IV]; in ObjCIvarBitfieldGroupNo()
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDLoopSimplify.cpp414 Value *IV = PN->getIncomingValue(i); in insertUniqueBackedgeBlock() local
418 NewPN->addIncoming(IV, IBB); in insertUniqueBackedgeBlock()
421 UniqueValue = IV; in insertUniqueBackedgeBlock()
422 else if (UniqueValue != IV) in insertUniqueBackedgeBlock()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDDeclObjC.cpp1471 for (auto *IV : ImplDecl->ivars()) { in all_declared_ivar_begin() local
1472 if (IV->getSynthesize() && !IV->isInvalidDecl()) { in all_declared_ivar_begin()
1474 IV->getASTContext().getTypeSize(IV->getType()), IV)); in all_declared_ivar_begin()
1478 data().IvarList = IV; in all_declared_ivar_begin()
1480 curIvar->setNextIvar(IV); in all_declared_ivar_begin()
1481 curIvar = IV; in all_declared_ivar_begin()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDExprEngineC.cpp700 APSInt IV; in VisitOffsetOfExpr() local
701 if (OOE->EvaluateAsInt(IV, getContext())) { in VisitOffsetOfExpr()
702 assert(IV.getBitWidth() == getContext().getTypeSize(OOE->getType())); in VisitOffsetOfExpr()
705 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType()); in VisitOffsetOfExpr()
706 SVal X = svalBuilder.makeIntVal(IV); in VisitOffsetOfExpr()

12345