/external/llvm-project/llvm/unittests/CodeGen/GlobalISel/ |
D | ConstantFoldingTest.cpp | 25 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/ |
D | cast5.rst | 4 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
|
D | idea.rst | 4 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
|
D | seed.rst | 4 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/ |
D | test_3des.py | 99 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)),
|
D | test_seed.py | 72 algorithms.SEED(b"\x00" * 16), modes.CFB(b"\x00" * 16) 83 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv))
|
D | test_cast5.py | 72 algorithms.CAST5(b"\x00" * 16), modes.CFB(b"\x00" * 8) 83 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv))
|
D | test_idea.py | 72 algorithms.IDEA(b"\x00" * 16), modes.CFB(b"\x00" * 8) 83 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv))
|
D | test_camellia.py | 78 algorithms.Camellia(b"\x00" * 16), modes.CFB(b"\x00" * 16) 89 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv)),
|
D | test_blowfish.py | 72 algorithms.Blowfish(b"\x00" * 56), modes.CFB(b"\x00" * 8) 83 lambda iv, **kwargs: modes.CFB(binascii.unhexlify(iv)),
|
D | test_block.py | 174 modes.CFB(b"abc"), 206 modes.CFB([1] * 16)
|
D | test_aes.py | 154 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/ |
D | objects.txt | 148 : 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/ |
D | generate_seed.py | 58 write_file(build_vectors(modes.CFB, CFB_PATH), "seed-cfb.txt")
|
/external/python/cryptography/docs/development/custom-vectors/idea/ |
D | generate_idea.py | 61 write_file(build_vectors(modes.CFB, CFB_PATH), "idea-cfb.txt")
|
/external/python/cryptography/docs/development/custom-vectors/cast5/ |
D | generate_cast5.py | 66 write_file(build_vectors(modes.CFB, cfb_path), "cast5-cfb.txt")
|
/external/python/cryptography/vectors/cryptography_vectors/ciphers/IDEA/ |
D | idea-cfb.txt | 1 # IDEA CFB vectors built for https://github.com/pyca/cryptography
|
/external/python/cryptography/vectors/cryptography_vectors/ciphers/SEED/ |
D | seed-cfb.txt | 1 # SEED CFB vectors built for https://github.com/pyca/cryptography
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
D | AES.java | 102 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/ |
D | AES.java | 115 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/ |
D | AES.java | 115 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/ |
D | blowfish_test.cc | 132 TEST(Blowfish, CFB) { in TEST() argument
|
/external/lzma/DOC/ |
D | Methods.txt | 155 x2 - CFB
|
/external/boringssl/src/decrepit/blowfish/ |
D | blowfish_test.cc | 132 TEST(Blowfish, CFB) { in TEST() argument
|
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/ |
D | modes.py | 143 class CFB(object): class
|