15 lines
306 B
Python
15 lines
306 B
Python
from src.models import (
|
|
CustomerInterface,
|
|
UserEncipherKeys,
|
|
EncipheredNKode
|
|
)
|
|
|
|
|
|
def encipher_nkode(
|
|
user_nkode_attributes: list[int],
|
|
user_nkode_sets: list[int],
|
|
user_keys: UserEncipherKeys,
|
|
customer_interface: CustomerInterface
|
|
) -> EncipheredNKode:
|
|
pass
|