Example #1
0
        public static ulong decodeVolumeData(byte[] bytes, out UInt32 dongleID)
        {
            byte[]   keyArr   = Encoding.ASCII.GetBytes(key);
            Blowfish blowFish = new Blowfish(keyArr);

            byte[] decode = blowFish.Decipher(bytes, bytes.Length);
            return(readInkData(decode, out dongleID));
        }