我使用" Swift加密/解密字符串使用XOR"在此website上加密我的项目中的字符串。它适用于xCode 6.1,但在我将xCode更新为6.4之后,它再也无法正常工作了。
func encrypt(message:String, key:String) -> String {
return reduce(Zip2(message, key), "") { $0 + self.encrypt($1) }
}
xCode说:Cannot invoke 'reduce' with an argument list of type '(Zip2<String, String>, String, (_, _) -> _)'
有人可以帮我这个吗?谢谢!