Files
pynkode/encipher_nkode.py
2024-07-09 13:11:42 -05:00

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