HashStream() static private method

static private HashStream ( Stream stream, ImageWriter writer, int &strong_name_pointer ) : byte[]
stream Stream
writer ImageWriter
strong_name_pointer int
return byte[]
Esempio n. 1
0
        public static void StrongName(Stream stream, ImageWriter writer, StrongNameKeyPair key_pair)
        {
            int num;

            byte[] numArray = CryptoService.CreateStrongName(key_pair, CryptoService.HashStream(stream, writer, out num));
            CryptoService.PatchStrongName(stream, num, numArray);
        }