OpenSSL.Core.Native.EVP_Digest C# (CSharp) Method

EVP_Digest() private method

private EVP_Digest ( byte data, uint count, byte md, uint &size, IntPtr type, IntPtr impl ) : int
data byte
count uint
md byte
size uint
type System.IntPtr
impl System.IntPtr
return int
        public static extern int EVP_Digest(byte[] data, uint count, byte[] md, ref uint size, IntPtr type, IntPtr impl);
Native