Renci.SshNet.Abstractions.CryptoAbstraction.CreateHMACSHA1 C# (CSharp) Method

CreateHMACSHA1() public static method

public static CreateHMACSHA1 ( byte key, int hashSize ) : HMACSHA1
key byte
hashSize int
return Renci.SshNet.Security.Cryptography.HMACSHA1
        public static HMACSHA1 CreateHMACSHA1(byte[] key, int hashSize)
        {
            return new HMACSHA1(key, hashSize);
        }
#else

Same methods

CryptoAbstraction::CreateHMACSHA1 ( byte key ) : System.Security.Cryptography.HMACSHA1
CryptoAbstraction::CreateHMACSHA1 ( byte key ) : global::SshNet.Security.Cryptography.HMACSHA1
CryptoAbstraction::CreateHMACSHA1 ( byte key, int hashSize ) : global::SshNet.Security.Cryptography.HMACSHA1