read

Engine.read_conjugation_key(file_path)
파일을 읽어서 켤레화 키를 생성합니다.
  • 인풋:
    • file_path: str 혹은 pathlib.Path
      • 절대 경로, 상대 경로 전부 가능합니다.
  • 아웃풋:
    • ConjugationKey

예시

절대 경로

from desilofhe import Engine

engine = Engine()
conjugation_key = engine.read_conjugation_key("/opt/desilo/conjugation_key")

상대 경로

from desilofhe import Engine

engine = Engine()
conjugation_key = engine.read_conjugation_key("conjugation_key")