Home
last modified time | relevance | path

Searched refs:SIV (Results 1 – 12 of 12) sorted by relevance

/freebsd/crypto/openssl/doc/man7/
H A DEVP_CIPHER-AES.pod55 =item "AES-128-SIV", "AES-192-SIV" and "AES-256-SIV"
66 The AES-SIV and AES-WRAP mode implementations do not support streaming. That
H A Dmigration_guide.pod239 Cipher Algorithm "AES-SIV"
241 See L<EVP_EncryptInit(3)/SIV Mode>.
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_aes_siv.c305 IMPLEMENT_cipher(aes, siv, SIV, SIV_FLAGS, 128, 8, 0)
306 IMPLEMENT_cipher(aes, siv, SIV, SIV_FLAGS, 192, 8, 0)
307 IMPLEMENT_cipher(aes, siv, SIV, SIV_FLAGS, 256, 8, 0)
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpciph_aes_siv.txt14 Title = RFC5297 AES-SIV
/freebsd/crypto/openssl/doc/man3/
H A DEVP_EncryptInit.pod456 EVP_get_cipherbyname() will return NULL for algorithms such as "AES-128-SIV",
891 by AES SIV ciphers which disallow multiple operations by default.
1375 =head2 SIV Mode
1377 For SIV mode ciphers the behaviour of the EVP interface is subtly
1393 The API does not store the the SIV (Synthetic Initialization Vector) in
1395 The SIV must be retrieved from the context after encryption, and set into
1399 the cipher input to decryption, does not contain the SIV. This also means
1402 The following ctrls are supported in SIV mode, and are used to get and set
1412 call). For SIV mode the taglen must be 16.
1419 calls). For SIV mode the taglen must be 16.
[all …]
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-threecolumn.pem399 SIV
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp1015 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, DT, LI, TTI, in simplifyUsersOfIV() local
1017 SIV.simplifyUsers(CurrIV, V); in simplifyUsersOfIV()
1018 return {SIV.hasChanged(), SIV.runUnswitching()}; in simplifyUsersOfIV()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h339 /// found by the weak-crossing SIV test. The dependence will have a flag,
369 enum ClassificationKind { ZIV, SIV, RDIV, MIV, NonLinear } Classification; enumerator
609 /// and classifies it as either ZIV, SIV, RDIV, MIV, or Nonlinear.
626 /// testSIV - Tests the SIV subscript pair (Src and Dst) for dependence.
664 /// strongSIVtest - Tests the strong SIV subscript pair (Src and Dst)
680 /// weakCrossingSIVtest - Tests the weak-crossing SIV subscript pair
699 /// ExactSIVtest - Tests the SIV subscript pair
717 /// weakZeroSrcSIVtest - Tests the weak-zero SIV subscript pair
735 /// weakZeroDstSIVtest - Tests the weak-zero SIV subscript pair
777 /// ordinary SIV test
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1032 return Subscript::SIV; in classifyPair()
3798 case Subscript::SIV: { in depends()
3838 if (Pair[SJ].Classification == Subscript::SIV) in depends()
3890 case Subscript::SIV: in depends()
4118 case Subscript::SIV: { in getSplitIteration()
4149 if (Pair[SJ].Classification == Subscript::SIV) in getSplitIteration()
4183 case Subscript::SIV: in getSplitIteration()
/freebsd/crypto/openssl/crypto/objects/
H A Dobjects.txt1743 # NID for AES-SIV
1744 : AES-128-SIV : aes-128-siv
1745 : AES-192-SIV : aes-192-siv
1746 : AES-256-SIV : aes-256-siv
/freebsd/crypto/openssl/
H A DNEWS.md86 * Do not ignore empty associated data entries with AES-SIV ([CVE-2023-2975])
H A DCHANGES.md314 * Do not ignore empty associated data entries with AES-SIV.
316 The AES-SIV algorithm allows for authentication of multiple associated
320 The AES-SIV implementation in OpenSSL just returns success for such call
327 applications that use empty associated data entries with AES-SIV.
1071 "AES-128-SIV", "AES-128-CBC-CTS" and "CAMELLIA-128-CBC-CTS" which were
2337 * Add support for RFC5297 SIV mode (siv128), including AES-SIV.