mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
* feat: add new supported attestation formats to genesis * feat: refactor keyType to keytype enum * refactor: remove unused imports and code * refactor: update main.go to use src package * refactor: move web-related structs from to * refactor: move client middleware package to root * refactor: remove unused IndexedDB dependency * feat: update worker implementation to use * feat: add Caddyfile and Caddy configuration for vault service * refactor(config): move keyshare and address to Motr config * fix: validate service origin in AllocateVault * chore: remove IndexedDB configuration * feat: add support for IPNS-based vault access
47 lines
961 B
Go
47 lines
961 B
Go
// Code generated from Pkl module `orm`. DO NOT EDIT.
|
|
package keyalgorithm
|
|
|
|
import (
|
|
"encoding"
|
|
"fmt"
|
|
)
|
|
|
|
type KeyAlgorithm string
|
|
|
|
const (
|
|
Es256 KeyAlgorithm = "es256"
|
|
Es384 KeyAlgorithm = "es384"
|
|
Es512 KeyAlgorithm = "es512"
|
|
Eddsa KeyAlgorithm = "eddsa"
|
|
Es256k KeyAlgorithm = "es256k"
|
|
Ecdsa KeyAlgorithm = "ecdsa"
|
|
)
|
|
|
|
// String returns the string representation of KeyAlgorithm
|
|
func (rcv KeyAlgorithm) String() string {
|
|
return string(rcv)
|
|
}
|
|
|
|
var _ encoding.BinaryUnmarshaler = new(KeyAlgorithm)
|
|
|
|
// UnmarshalBinary implements encoding.BinaryUnmarshaler for KeyAlgorithm.
|
|
func (rcv *KeyAlgorithm) UnmarshalBinary(data []byte) error {
|
|
switch str := string(data); str {
|
|
case "es256":
|
|
*rcv = Es256
|
|
case "es384":
|
|
*rcv = Es384
|
|
case "es512":
|
|
*rcv = Es512
|
|
case "eddsa":
|
|
*rcv = Eddsa
|
|
case "es256k":
|
|
*rcv = Es256k
|
|
case "ecdsa":
|
|
*rcv = Ecdsa
|
|
default:
|
|
return fmt.Errorf(`illegal: "%s" is not a valid KeyAlgorithm`, str)
|
|
}
|
|
return nil
|
|
}
|