(ctx context.Context, email string, passwordHash, passwordSalt []byte, role string, kdfTime uint32, kdfMemory uint32, kdfThreads uint8)
| 255 | type Store interface { |
| 256 | GetMasterKeyRecord(ctx context.Context) (*store.MasterKeyRecord, error) |
| 257 | CreateUser(ctx context.Context, email string, passwordHash, passwordSalt []byte, role string, kdfTime uint32, kdfMemory uint32, kdfThreads uint8) (*store.User, error) |
| 258 | GetUserByEmail(ctx context.Context, email string) (*store.User, error) |
| 259 | GetUserByID(ctx context.Context, id string) (*store.User, error) |
| 260 | GetUserEmailByID(ctx context.Context, id string) (string, error) |
no outgoing calls