Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions twofish.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ DL_EXPORT(void) exp_Twofish_decrypt(Twofish_key * xkey, uint8_t c[16], uint8_t p
We need a stub init_twofish function so the module will link as a proper module.
Do not import _twofish from python; it will not work since _twofish is not a *real* module
*/
PyMODINIT_FUNC init_twofish(void) { }
PyMODINIT_FUNC PyInit__twofish(void) { }
PyMODINIT_FUNC init_twofish(void) { return NULL; }
PyMODINIT_FUNC PyInit__twofish(void) { return NULL; }