Home
last modified time | relevance | path

Searched refs:CFB (Results 1 – 25 of 58) sorted by relevance

123

/external/llvm-project/llvm/unittests/CodeGen/GlobalISel/
DConstantFoldingTest.cpp25 ConstantFoldingMIRBuilder CFB(B.getState()); in TEST_F() local
29 CFB.buildAdd(s32, CFB.buildConstant(s32, 0), CFB.buildConstant(s32, 1)); in TEST_F()
35 CFB.buildInstr(TargetOpcode::G_ADD, {s32}, in TEST_F()
36 {CFB.buildConstant(s32, 0), CFB.buildConstant(s32, 1)}); in TEST_F()
/external/python/cryptography/docs/development/custom-vectors/
Dcast5.rst4 This page documents the code that was used to generate the CAST5 CBC, CFB, OFB,
6 implementation. The CBC, CFB, and OFB vectors were generated using OpenSSL and
13 ``cryptography`` was modified to support CAST5 in CBC, CFB, and OFB modes. Then
Didea.rst4 This page documents the code that was used to generate the IDEA CBC, CFB, and
12 ``cryptography`` was modified to support IDEA in CBC, CFB, and OFB modes. Then
Dseed.rst4 This page documents the code that was used to generate the SEED CFB and OFB
12 ``cryptography`` was modified to support SEED in CFB and OFB modes. Then
/external/python/cryptography/tests/hazmat/primitives/
Dtest_3des.py99 algorithms.TripleDES(b"\x00" * 8), modes.CFB(b"\x00" * 8)
116 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv)),
130 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv)),
Dtest_seed.py72 algorithms.SEED(b"\x00" * 16), modes.CFB(b"\x00" * 16)
83 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv))
Dtest_cast5.py72 algorithms.CAST5(b"\x00" * 16), modes.CFB(b"\x00" * 8)
83 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv))
Dtest_idea.py72 algorithms.IDEA(b"\x00" * 16), modes.CFB(b"\x00" * 8)
83 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv))
Dtest_camellia.py78 algorithms.Camellia(b"\x00" * 16), modes.CFB(b"\x00" * 16)
89 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv)),
Dtest_blowfish.py72 algorithms.Blowfish(b"\x00" * 56), modes.CFB(b"\x00" * 8)
83 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv)),
Dtest_block.py174 modes.CFB(b"abc"),
206 modes.CFB([1] * 16)
Dtest_aes.py154 algorithms.AES(b"\x00" * 16), modes.CFB(b"\x00" * 16)
181 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv)),
484 modes.CFB(bytearray(b"\x00" * 16)),
/external/boringssl/src/crypto/obj/
Dobjects.txt148 : CAST5-CFB : cast5-cfb
376 : RC2-CFB : rc2-cfb
387 : RC5-CFB : rc5-cfb
411 : IDEA-CFB : idea-cfb
418 : BF-CFB : bf-cfb
632 algorithm 9 : DES-CFB : des-cfb
644 : DES-EDE-CFB : des-ede-cfb
646 : DES-EDE3-CFB : des-ede3-cfb
856 aes 4 : AES-128-CFB : aes-128-cfb
867 aes 24 : AES-192-CFB : aes-192-cfb
[all …]
/external/python/cryptography/docs/development/custom-vectors/seed/
Dgenerate_seed.py58 write_file(build_vectors(modes.CFB, CFB_PATH), "seed-cfb.txt")
/external/python/cryptography/docs/development/custom-vectors/idea/
Dgenerate_idea.py61 write_file(build_vectors(modes.CFB, CFB_PATH), "idea-cfb.txt")
/external/python/cryptography/docs/development/custom-vectors/cast5/
Dgenerate_cast5.py66 write_file(build_vectors(modes.CFB, cfb_path), "cast5-cfb.txt")
/external/python/cryptography/vectors/cryptography_vectors/ciphers/IDEA/
Didea-cfb.txt1 # IDEA CFB vectors built for https://github.com/pyca/cryptography
/external/python/cryptography/vectors/cryptography_vectors/ciphers/SEED/
Dseed-cfb.txt1 # SEED CFB vectors built for https://github.com/pyca/cryptography
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DAES.java102 static public class CFB class in AES
105 public CFB() in CFB() method in AES.CFB
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/
DAES.java115 static public class CFB class in AES
118 public CFB() in CFB() method in AES.CFB
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/symmetric/
DAES.java115 static public class CFB class in AES
118 public CFB() in CFB() method in AES.CFB
/external/rust/crates/quiche/deps/boringssl/src/decrepit/blowfish/
Dblowfish_test.cc132 TEST(Blowfish, CFB) { in TEST() argument
/external/lzma/DOC/
DMethods.txt155 x2 - CFB
/external/boringssl/src/decrepit/blowfish/
Dblowfish_test.cc132 TEST(Blowfish, CFB) { in TEST() argument
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/
Dmodes.py143 class CFB(object): class

123