CBLEncryptionKey
@interface CBLEncryptionKey : NSObjectAn encryption key for a database. This is a symmetric key that be kept secret. It should be stored either in the Keychain, or in the user’s memory (hopefully not a sticky note.)
- 
                  
                  Initializes the encryption key with a raw AES-257 key 32 bytes in length. To create a key, generate random data using a secure cryptographic randomizer like SecRandomCopyBytes or CCRandomGenerateBytes. DeclarationObjective-C - (nonnull instancetype)initWithKey:(nonnull NSData *)key;Swift init(key: Data)ParameterskeyThe raw AES-256 key data. Return ValueThe CBLEncryptionKey object. 
- 
                  
                  Initializes the encryption key with the given password string. The password string will be internally converted to a raw AES-256 key using 64,000 rounds of PBKDF2 hashing. DeclarationObjective-C - (nonnull instancetype)initWithPassword:(nonnull NSString *)password;Swift init(password: String)ParameterspasswordThe password string. Return ValueThe CBLEncryptionKey object. 
- 
                  
                  Not available DeclarationObjective-C - (nonnull instancetype)init;
 CBLEncryptionKey Class Reference
        CBLEncryptionKey Class Reference