20 lines
392 B
Markdown
Executable file
20 lines
392 B
Markdown
Executable file
---
|
|
author: ArgentumCation
|
|
pubDate: "2023-03-19"
|
|
slug: post-1
|
|
title: Generating an SSH Resident Key
|
|
---
|
|
|
|
import { Accordion, AccordionItem } from "accessible-astro-components";
|
|
|
|
## Here's how to create a resident SSH Key using a security key
|
|
|
|
```bash
|
|
ssh-keygen -t ed25519-sk -Oresident
|
|
```
|
|
|
|
## If that one doesn't work,
|
|
|
|
```bash
|
|
ssh-keygen -t ed25519-sk -Oresident -Oapplication=ssh:key
|
|
```
|