CreateStrongName() 정적인 개인적인 메소드

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