6.2 Lock/Unlock Text
6.2.1 Lock Text
[[BayunCore sharedInstance] lockText:@"plain text" success:^(NSString *lockedText) {
NSLog(@"Text locked successfully.");
} failure:^(BayunError errorCode) {
NSLog(@"Error locking text.");
}];BayunCore .sharedInstance().lockText("plain text", success: { (lockedText) in
NSLog("Text locked successfully.")
}, failure: { (bayunErrorCode) in
NSLog("Error locking text.");
})6.2.2 Lock Text with Encryption Policy, Key Generation Policy
6.2.3 Unlock Text
Last updated