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

CreateHMACSHA384() public static method

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

Same methods

CryptoAbstraction::CreateHMACSHA384 ( byte key ) : System.Security.Cryptography.HMACSHA384
CryptoAbstraction::CreateHMACSHA384 ( byte key ) : global::SshNet.Security.Cryptography.HMACSHA384
CryptoAbstraction::CreateHMACSHA384 ( byte key, int hashSize ) : global::SshNet.Security.Cryptography.HMACSHA384