Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@microsoft/dev-tunnels-ssh-keys
Advanced tools
Enables importing and exporting SSH public and private keys in various formats. Password-protection of private keys is also supported when importing and exporting some formats.
SSH public key - Single line starting with a key algorithm name
such as ssh-rsa
, followed by base64-encoded key bytes, and an optional
comment. Files in this format typically end with .pub
.
PKCS#1 public or private RSA key - PEM-encoded keys in this format begin
with one of the following:
-----BEGIN RSA PUBLIC KEY-----
-----BEGIN RSA PRIVATE KEY-----
SEC1 private EC key - PEM-encoded keys in this format begin with:
-----BEGIN EC PRIVATE KEY-----
PKCS#8 public or private key - PEM-encoded keys in this format begin
with one of the following:
-----BEGIN PUBLIC KEY-----
-----BEGIN PRIVATE KEY-----
-----BEGIN ENCRYPTED PRIVATE KEY-----
JSON Web Key (JWK) - Key paramters are formatted as JSON.
Private keys in PKCS#1, SEC1, or PKCS#8 format may be passphrase-protected, meaning the private key is encrypted using an encryption key derived from a passphrase. (The encryption used by the PKCS#1/SEC1 formats is weak and no longer recommended.)
For the key formats that are typically PEM-encoded, the equivalent binary (DER) format is also supported.
Use importKey*
, exportPublicKey*
, and exportPrivateKey*
functions provided
by the library to import or export keys. When importing, the key format can be
auto-detected in most cases.
// Import my password-protected RSA private key from a file.
const privateKey: KeyPair = importPrivateKeyFile('.ssh/id_rsa', myPassword);
// Use the private key for client public key authentication.
const session: SshClientSession = ...
const credentials: SshClientCredentials = { username, publicKeys: [ privateKey ] };
const result: boolean = await session.authenticate(credentials);
When exporting, you can specify the format, and optionally supply a password for encrypting the key. The default format is PKCS#8 because it has broad support and strong encryption when using password protection.
FAQs
SSH key import/export library for Dev Tunnels
We found that @microsoft/dev-tunnels-ssh-keys demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.