我需要使用 ascii85 编码转换NSData
为。NSString
我找到了这个答案:任何适用于 iOS 的 ascii85/base85 编码器/解码器?但那里使用的类别使用 RFC1924 字符集。但我需要一个 adobe 版本。请帮帮我。
问问题
138 次
1 回答
1
通过使用此类别解决
但我删除了 _b85encode 和 _b85decode 字符集并替换
outputBuffer[outputLength + (4-j)] = _b85encode[x % 85];
为outputBuffer[outputLength + (4-j)] = (x%85)+33;
, x = x*85 + _b85decode[chars[i*5 + j]];
withx = x*85 + chars[i*5 + j]-33;
和x = x*85 + _b85decode[chars[numBlocks*5 + i]];
withx = x*85 + chars[numBlocks*5 + i] - 33;
于 2013-06-19T12:32:10.580 回答