C# Class dlech.SshAgentLib.PpkFormatter.FileData

Exibir arquivo Open project: dlech/SshAgentLib

Public Properties

Property Type Description
comment string
isHMAC bool
passphrase System.Security.SecureString
ppkFileVersion System.Version
privateKeyAlgorithm PrivateKeyAlgorithm
privateKeyBlob PinnedArray
privateMAC byte[]
publicKeyAlgorithm PublicKeyAlgorithm
publicKeyBlob byte[]

Property Details

comment public_oe property

public key comment
public string comment
return string

isHMAC public_oe property

privateMACString is a HMAC as opposed to the old format
public bool isHMAC
return bool

passphrase public_oe property

public SecureString,System.Security passphrase
return System.Security.SecureString

ppkFileVersion public_oe property

File format version (one of FileVersions members) Callers of this method should warn user that version 1 has security issue and should not be used
public Version,System ppkFileVersion
return System.Version

privateKeyAlgorithm public_oe property

Private key encryption algorithm One of PrivateKeyAlgorithm
public PrivateKeyAlgorithm privateKeyAlgorithm
return PrivateKeyAlgorithm

privateKeyBlob public_oe property

The private key.
public PinnedArray privateKeyBlob
return PinnedArray

privateMAC public_oe property

The private key hash.
public byte[] privateMAC
return byte[]

publicKeyAlgorithm public_oe property

Public key algorithm One of PublicKeyAlgorithms
public PublicKeyAlgorithm publicKeyAlgorithm
return PublicKeyAlgorithm

publicKeyBlob public_oe property

The public key
public byte[] publicKeyBlob
return byte[]