diff options
Diffstat (limited to 'docs/encryption.rst')
-rw-r--r-- | docs/encryption.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/encryption.rst b/docs/encryption.rst index 8b0ed2f..768a3f4 100644 --- a/docs/encryption.rst +++ b/docs/encryption.rst @@ -11,7 +11,7 @@ Embedded PSKC encryption is handled inside the :class:`Encryption` class that defines encryption key or means of deriving keys. It is accessed from the :attr:`~pskc.PSKC.encryption` attribute of a :class:`~pskc.PSKC` instance:: - >>> rom binascii import a2b_hex + >>> from binascii import a2b_hex >>> from pskc import PSKC >>> pskc = PSKC('somefile.pskcxml') >>> pskc.encryption.key = a2b_hex('12345678901234567890123456789012') |