SBSDKAESEncrypterMode
enum SBSDKAESEncrypterMode : NSUInteger {}
An enum containing the available encryption modes for the SBSDKAESEncrypter.
-
AES128 mode with a key length of 16 bytes. Secure and fast.
Declaration
Objective-C
SBSDKAESEncrypterModeAES128
Swift
case AES128 = 0
-
AES256 mode with a key length of 32 bytes. More secure, but slower.
Declaration
Objective-C
SBSDKAESEncrypterModeAES256
Swift
case AES256 = 1