Add multi-user service for no-2022 aead

This commit is contained in:
wwqgtxx 2023-04-14 20:44:20 +08:00 committed by GitHub
parent 1a7c32b4e2
commit 39baf9c17e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 245 additions and 47 deletions

View file

@ -14,6 +14,7 @@ import (
var (
ErrBadKey = E.New("bad key")
ErrMissingPassword = E.New("missing password")
ErrNoUsers = E.New("no users")
)
type Method interface {
@ -31,6 +32,15 @@ type Service interface {
E.Handler
}
type MultiService[U comparable] interface {
Name() string
UpdateUsers(userList []U, keyList [][]byte) error
UpdateUsersWithPasswords(userList []U, passwordList []string) error
N.TCPConnectionHandler
N.UDPHandler
E.Handler
}
type Handler interface {
N.TCPConnectionHandler
N.UDPConnectionHandler