I'd like to create a Base16 encoder and decoder for Lion's new Security.framework
to complement kSecBase32Encoding
and kSecBase64Encoding
. Apple's documentation shows how to write a custom transform (Caesar cipher) using SecTransformRegister
. As far as I can tell, custom transforms registered this way have to operate symmetrically on the data and can't be used to encode and decode data differently. Does anyone know if writing a custom encoder/decoder is possible, and if so, how?
问问题
185 次