Org.BouncyCastle.Crypto.Tls.CombinedHash.GetDigestSize C# (CSharp) Метод

GetDigestSize() публичный Метод

public GetDigestSize ( ) : int
Результат int
		public int GetDigestSize()
		{
			return md5.GetDigestSize() + sha1.GetDigestSize();
		}

Usage Example

Пример #1
0
 private static byte[] DoFinal(CombinedHash ch)
 {
     byte[] bs = new byte[ch.GetDigestSize()];
     ch.DoFinal(bs, 0);
     return(bs);
 }
All Usage Examples Of Org.BouncyCastle.Crypto.Tls.CombinedHash::GetDigestSize