ok this works kinda

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer
2025-05-16 15:16:26 +02:00
parent 318443f270
commit 91c87b7c3c
8 changed files with 91 additions and 51 deletions

View File

@ -4,3 +4,10 @@ type Payload interface {
Decode(raw []byte) error
Encode() ([]byte, error)
}
type Type uint8
const (
TypeIdentity Type = 1
TypeMD5Challenge Type = 4
)