Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

crash occurs when text is an empty string #2

Closed
mengkeer opened this issue Jun 12, 2020 · 0 comments
Closed

crash occurs when text is an empty string #2

mengkeer opened this issue Jun 12, 2020 · 0 comments

Comments

@mengkeer
Copy link

mengkeer commented Jun 12, 2020

For example,for the following cases, a crash will occur

        NSString *text = @"";
        NSString *key = @"key";
        
        for (int i = 0; i < 10000; i++) {
            NSString *encrypt_data = [XXTEA encryptStringToBase64String:text stringKey:key];
            NSString *decrypt_data = [XXTEA decryptBase64StringToString:encrypt_data stringKey:key];
            NSLog(@"%@", encrypt_data);
            NSLog(@"%d",i);
            if ([text isEqual:decrypt_data]) {
                NSLog(@"success!");
            }
            else {
                NSLog(@"fail!");
            }
        }
@andot andot closed this as completed in ffc89ba Jun 14, 2020
andot added a commit that referenced this issue Jun 15, 2020
This reverts commit ffc89ba.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant