You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -158,7 +153,8 @@ Private keys in PuTTY private key format can be encrypted using the following ci
158
153
* rsa-sha2-512
159
154
* rsa-sha2-256
160
155
* ssh-rsa
161
-
* ssh-dss
156
+
157
+
OpenSSH certificate authentication is supported for all of the above, e.g. ssh-ed25519-cert-v01<span></span>@openssh.com.
162
158
163
159
## Message Authentication Code
164
160
@@ -187,17 +183,17 @@ Private keys in PuTTY private key format can be encrypted using the following ci
187
183
188
184
The library has no special requirements to build, other than an up-to-date .NET SDK. See also [CONTRIBUTING.md](https://github.com/sshnet/SSH.NET/blob/develop/CONTRIBUTING.md).
189
185
190
-
## Using Pre-Release NuGet Package
186
+
## Using Pre-Release NuGet Packages
191
187
192
-
If you need an unreleased bugfix or feature, you can use the Pre-Release NuGet packages from the `develop` branch which are published to the [GitHub NuGet Registry](https://github.com/sshnet/SSH.NET/pkgs/nuget/SSH.NET).
193
-
In order to pull packages from the registry you first have to create a Personal Access Token with the `read:packages` permissions. Then add a NuGet Source for SSH.NET:
194
-
195
-
Note: you may have to add `--store-password-in-clear-text` on non-Windows platforms.
188
+
Pre-release NuGet packages are published from the `develop` branch to the [GitHub NuGet Registry](https://github.com/sshnet/SSH.NET/pkgs/nuget/SSH.NET).
189
+
In order to pull packages from the registry, create a Personal Access Token with the `read:packages` permissions. Then add a package source for SSH.NET:
Copy file name to clipboardExpand all lines: src/Renci.SshNet/ConnectionInfo.cs
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -398,7 +398,6 @@ public ConnectionInfo(string host, int port, string username, ProxyTypes proxyTy
398
398
hostAlgs.Add("rsa-sha2-512-cert-v01@openssh.com", data =>{varcert=newCertificate(data);returnnewCertificateHostAlgorithm("rsa-sha2-512-cert-v01@openssh.com",cert,newRsaDigitalSignature((RsaKey)cert.Key,HashAlgorithmName.SHA512),hostAlgs);});
399
399
hostAlgs.Add("rsa-sha2-256-cert-v01@openssh.com", data =>{varcert=newCertificate(data);returnnewCertificateHostAlgorithm("rsa-sha2-256-cert-v01@openssh.com",cert,newRsaDigitalSignature((RsaKey)cert.Key,HashAlgorithmName.SHA256),hostAlgs);});
400
400
hostAlgs.Add("ssh-rsa-cert-v01@openssh.com", data =>{varcert=newCertificate(data);returnnewCertificateHostAlgorithm("ssh-rsa-cert-v01@openssh.com",cert,hostAlgs);});
401
-
hostAlgs.Add("ssh-dss-cert-v01@openssh.com", data =>{varcert=newCertificate(data);returnnewCertificateHostAlgorithm("ssh-dss-cert-v01@openssh.com",cert,hostAlgs);});
402
401
hostAlgs.Add("ssh-ed25519", data =>newKeyHostAlgorithm("ssh-ed25519",newED25519Key(newSshKeyData(data))));
403
402
hostAlgs.Add("ecdsa-sha2-nistp256", data =>newKeyHostAlgorithm("ecdsa-sha2-nistp256",newEcdsaKey(newSshKeyData(data))));
404
403
hostAlgs.Add("ecdsa-sha2-nistp384", data =>newKeyHostAlgorithm("ecdsa-sha2-nistp384",newEcdsaKey(newSshKeyData(data))));
0 commit comments