/src/botan/build/include/botan/internal/sm4.h
Line  | Count  | Source (jump to first uncovered line)  | 
1  |  | /*  | 
2  |  | * SM4  | 
3  |  | * (C) 2017 Ribose Inc  | 
4  |  | *  | 
5  |  | * Botan is released under the Simplified BSD License (see license.txt)  | 
6  |  | */  | 
7  |  |  | 
8  |  | #ifndef BOTAN_SM4_H_  | 
9  |  | #define BOTAN_SM4_H_  | 
10  |  |  | 
11  |  | #include <botan/block_cipher.h>  | 
12  |  |  | 
13  |  | namespace Botan { | 
14  |  |  | 
15  |  | /**  | 
16  |  | * SM4  | 
17  |  | */  | 
18  |  | class SM4 final : public Block_Cipher_Fixed_Params<16, 16>  | 
19  |  |    { | 
20  |  |    public:  | 
21  |  |       void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;  | 
22  |  |       void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;  | 
23  |  |  | 
24  |  |       void clear() override;  | 
25  | 0  |       std::string name() const override { return "SM4"; } | 
26  | 0  |       std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<SM4>(); } | 
27  |  |  | 
28  |  |       std::string provider() const override;  | 
29  |  |       size_t parallelism() const override;  | 
30  |  |       bool has_keying_material() const override;  | 
31  |  |    private:  | 
32  |  |       void key_schedule(const uint8_t[], size_t) override;  | 
33  |  |  | 
34  |  | #if defined(BOTAN_HAS_SM4_ARMV8)  | 
35  |  |       void sm4_armv8_encrypt(const uint8_t in[], uint8_t out[], size_t blocks) const;  | 
36  |  |       void sm4_armv8_decrypt(const uint8_t in[], uint8_t out[], size_t blocks) const;  | 
37  |  | #endif  | 
38  |  |  | 
39  |  |       secure_vector<uint32_t> m_RK;  | 
40  |  |    };  | 
41  |  |  | 
42  |  | }  | 
43  |  |  | 
44  |  | #endif  |