In SQLCipher I can change the cipher using PRAGMA cipher
. The default cipher is AES-256-cbc. What are the supported ciphers and modes of operation?
Asked
Active
Viewed 126 times
0

Minh Pham
- 948
- 12
- 22
1 Answers
1
SQLCipher uses OpenSSL, and thus relies on the underlying cipher suite supported by the library, initialized using the standard cipher-length-mode identifier. However, this feature is mainly reserved for specific circumstances where an alternate cipher is required. We generally recommend that integrations use the default aes-256-cbc.

Stephen Lombardo
- 1,503
- 8
- 7