Org.BouncyCastle.Crypto.Tls.Ssl3Mac.GenPad C# (CSharp) Метод

GenPad() приватный статический Метод

private static GenPad ( byte b, int count ) : byte[]
b byte
count int
Результат byte[]
		private static byte[] GenPad(byte b, int count)
		{
			byte[] padding = new byte[count];
			Arrays.Fill(padding, b);
			return padding;
		}
	}