How can I decode data from Base64 to IPhone

Hi, my friend uses Base64 encoding standard in java.

I use IPhone, how can I decode data. and vice versa. There is org.apache.commons.codec.binary.Base64.decodeBase64 in java in java

Thanks Deepak

+3
source share
3 answers

There is also a fairly simple code that you can use here:

http://www.cocoadev.com/index.pl?BaseSixtyFour

Another interesting way to do this using OpenSSL:

http://www.dribin.org/dave/blog/archives/2006/03/12/base64_cocoa/

0

use this base64 code (github.com/nicklockwood/Base64)

0
source

Source: https://habr.com/ru/post/1708800/


All Articles