Separate out key directory

This commit is contained in:
cheddar 2025-02-17 19:55:53 -05:00
parent b7671b9a97
commit 3dfe5b8558
No known key found for this signature in database
6 changed files with 85 additions and 60 deletions

9
keydirectory/keyentry.go Normal file
View file

@ -0,0 +1,9 @@
package keydirectory
import "crypto"
type KeyEntry struct {
Alg string
PublicKey crypto.PublicKey
UserId string
}