i'm trying to decrypt an url generated in javascript, this is what i find in the html page:
Base64.encrypt(Base64.decode('Zk05NUQ6YUZVcERKd3pCdlkucUIrbnFtdldTdW5mbkZnZFk5TVFpV3N0NHRaTF9FV1RWSHhjX1pFMDNacmxwUy5JalF3Yw=='));
my question is how i can decrypt it in Objective-C, i have add a Base64 in my Xcode project, and i have decode it using the function:
+ (NSData*) decode:(NSString*) string;
and decode it, but how i can encrypt it? what is the:
Base64.encrypt
how i can handle it in Objective-C?
EDIT 2:
i have tried to use the decode base 64 and the output is this:
fM95D:aFUpDJwzBvY.qB+nqmvWSunfnFgdY9MQiWst4tZL_EWTVHxc_ZE03ZrlpS.IjQwc
what i have to do then? the javascript do this Base.encrypt, what i have to do?