If it is ECB mode at runtime.
| 250 | |
| 251 | /// If it is ECB mode at runtime. |
| 252 | bool IsEcbMode() const { |
| 253 | return mode_ == AES_CIPHER_MODE::AES_256_ECB |
| 254 | || mode_ == AES_CIPHER_MODE::AES_128_ECB; |
| 255 | } |
| 256 | |
| 257 | /// It initializes 'key_' and 'iv_'. |
| 258 | /// Specifies a cipher mode. It gives an option to configure this mode for end users, |
no outgoing calls