tsigkeyring.pyi 190 B

1234567
  1. from typing import Dict
  2. from . import name
  3. def from_text(textring : Dict[str,str]) -> Dict[name.Name,bytes]:
  4. ...
  5. def to_text(keyring : Dict[name.Name,bytes]) -> Dict[str, str]:
  6. ...