-
-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5726da8
commit fc1a4dc
Showing
5 changed files
with
48 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from sage.misc.lazy_import import lazy_import | ||
|
||
lazy_import('sage.crypto.key_exchange.diffie_hellman', 'DiffieHellman') | ||
lazy_import('sage.crypto.key_exchange.key_exchange_scheme', 'KeyExchangeScheme') | ||
|
||
del lazy_import |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
""" | ||
Index of key exchange schemes | ||
This catalogue includes implementations of key exchange schemes. | ||
Let ``<tab>`` indicate pressing the :kbd:`Tab` key. So begin by typing | ||
``key_exchange.<tab>`` to the see the currently implemented key exchange | ||
schemes. | ||
This catalogue includes the following key exchange schemes: | ||
- :class:`sage.crypto.key_exchange.diffie_hellman.DiffieHellman` | ||
To import these names into the global namespace, use:: | ||
sage: from sage.crypto.key_exchange.catalog import * | ||
""" | ||
|
||
from sage.misc.lazy_import import lazy_import | ||
|
||
lazy_import('sage.crypto.key_exchange.diffie_hellman', 'DiffieHellman') | ||
|
||
del lazy_import |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters