rigged shuffle

This commit is contained in:
2025-08-01 10:49:46 -05:00
parent 3ed12cee68
commit 8d4c8f71b0
21 changed files with 578 additions and 146 deletions

View File

@@ -10,7 +10,7 @@ import (
type User struct {
Id models.UserId
CustomerId models.CustomerId
CustomerId models.CustomerID
Email models.UserEmail
EncipheredPasscode models.EncipheredNKode
Kp KeypadDimension
@@ -137,7 +137,7 @@ func NewUser(customer Customer, userEmail string, passcodeIdx []int, ui UserInte
CipherKeys: *newKeys,
Interface: ui,
Kp: kp,
CustomerId: customer.Id,
CustomerId: customer.ID,
}
return &newUser, nil
}