2021-02-12 15:51:12 +00:00
|
|
|
package domain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2022-04-26 23:01:45 +00:00
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
2021-02-12 15:51:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type KeyPair struct {
|
|
|
|
es_models.ObjectRoot
|
|
|
|
|
2024-08-14 14:18:14 +00:00
|
|
|
Usage crypto.KeyUsage
|
2022-09-12 16:18:08 +00:00
|
|
|
Algorithm string
|
|
|
|
PrivateKey *Key
|
|
|
|
PublicKey *Key
|
|
|
|
Certificate *Key
|
2021-02-12 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Key struct {
|
|
|
|
Key *crypto.CryptoValue
|
|
|
|
Expiry time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *KeyPair) IsValid() bool {
|
|
|
|
return k.Algorithm != "" &&
|
|
|
|
k.PrivateKey != nil && k.PrivateKey.IsValid() &&
|
2022-09-12 16:18:08 +00:00
|
|
|
k.PublicKey != nil && k.PublicKey.IsValid() &&
|
|
|
|
k.Certificate != nil && k.Certificate.IsValid()
|
2021-02-12 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Key) IsValid() bool {
|
|
|
|
return k.Key != nil
|
|
|
|
}
|