mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-12 20:47:53 +00:00
Update cheatsheets
This commit is contained in:
41
linux/keyctl
Normal file
41
linux/keyctl
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# keyctl
|
||||
|
||||
> Manipulate the Linux kernel keyring.
|
||||
> More information: <https://manned.org/keyctl>.
|
||||
|
||||
- List keys in a specific keyring:
|
||||
|
||||
`keyctl list {{target_keyring}}`
|
||||
|
||||
- List current keys in the user default session:
|
||||
|
||||
`keyctl list {{@us}}`
|
||||
|
||||
- Store a key in a specific keyring:
|
||||
|
||||
`keyctl add {{type_keyring}} {{key_name}} {{key_value}} {{target_keyring}}`
|
||||
|
||||
- Store a key with its value from `stdin`:
|
||||
|
||||
`echo -n {{key_value}} | keyctl padd {{type_keyring}} {{key_name}} {{target_keyring}}`
|
||||
|
||||
- Put a timeout on a key:
|
||||
|
||||
`keyctl timeout {{key_name}} {{timeout_in_seconds}}`
|
||||
|
||||
- Read a key and format it as a hex-dump if not printable:
|
||||
|
||||
`keyctl read {{key_name}}`
|
||||
|
||||
- Read a key and format as-is:
|
||||
|
||||
`keyctl pipe {{key_name}}`
|
||||
|
||||
- Revoke a key and prevent any further action on it:
|
||||
|
||||
`keyctl revoke {{key_name}}`
|
||||
Reference in New Issue
Block a user