I am currently investigating a crash during unarchiving of a file supposedly stored through NSKeyedArchiver
. The crash log contains the first 8 byte quartets of the file (I only included the first 2 below).
Fatal Exception: NSInvalidArgumentException
*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0xffffffa6, 0xffffff9e, ...)
I have been unable to decode these bytes into anything useful using ASCII, Base64, UTF8 or UTF16. Does anyone know what kind of file format and/or character encoding NSKeyedArchiver
uses or how I could decode these bytes to something human readable?