Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
465 B
11 lines
465 B
/* |
|
Package sshsig implements signing/verifying armored SSH signatures. |
|
You can use this package to sign data and verify signatures using your ssh private keys or your ssh agent. |
|
It gives the same output as using `ssh-keygen`, eg when signing `ssh-keygen -Y sign -f keyfile -n namespace data` |
|
|
|
This code is based upon work by https://github.com/sigstore/rekor |
|
|
|
References: |
|
- https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.sshsig |
|
*/ |
|
package sshsig
|
|
|