| 240 | }; |
| 241 | |
| 242 | enum class EncryptionAlgorithm { |
| 243 | AES128CTR = 0x00, |
| 244 | AES192CTR = 0x01, |
| 245 | AES256CTR = 0x02, |
| 246 | // ECB mode below only used to encrypt keys. |
| 247 | AES128ECB = 0xFD, |
| 248 | AES192ECB = 0XFE, |
| 249 | AES256ECB = 0xFF, |
| 250 | }; |
| 251 | |
| 252 | // The encryption header is stored on disk as follows: |
| 253 | // |
no outgoing calls
no test coverage detected