a363211861
Results
1
issues of
a363211861
this is mycode(in my project): func testCipherString() { let str = "123456" let password = "45678" let salt = "7891" let result = str.encrypt(Cipher.aes_256_cbc, password: password, salt: salt) print("result=\(result!)") guard...