CreateStrongName() static private method

static private CreateStrongName ( StrongNameKeyPair key_pair, Array hash ) : byte[]
key_pair StrongNameKeyPair
hash Array
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);
        }