| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9c1491f commit 94ac197
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,15 +17,17 @@ extern void initgc(void); | |||
| 17 | 17 | extern void initimageop(void); | |
| 18 | 18 | #endif | |
| 19 | 19 | extern void initmath(void); | |
| 20 | - extern void initmd5(void); | ||
| 20 | + extern void init_md5(void); | ||
| 21 | 21 | extern void initnt(void); | |
| 22 | 22 | extern void initoperator(void); | |
| 23 | 23 | extern void initregex(void); | |
| 24 | 24 | #ifndef MS_WIN64 | |
| 25 | 25 | extern void initrgbimg(void); | |
| 26 | 26 | #endif | |
| 27 | 27 | extern void initsignal(void); | |
| 28 | - extern void initsha(void); | ||
| 28 | + extern void init_sha(void); | ||
| 29 | + extern void init_sha256(void); | ||
| 30 | + extern void init_sha512(void); | ||
| 29 | 31 | extern void initstrop(void); | |
| 30 | 32 | extern void initstruct(void); | |
| 31 | 33 | extern void inittime(void); | |
@@ -86,15 +88,17 @@ struct _inittab _PyImport_Inittab[] = { | |||
| 86 | 88 | {"imageop", initimageop}, | |
| 87 | 89 | #endif | |
| 88 | 90 | {"math", initmath}, | |
| 89 | - {"md5", initmd5}, | ||
| 91 | + {"_md5", init_md5}, | ||
| 90 | 92 | {"nt", initnt}, /* Use the NT os functions, not posix */ | |
| 91 | 93 | {"operator", initoperator}, | |
| 92 | 94 | {"regex", initregex}, | |
| 93 | 95 | #ifndef MS_WIN64 | |
| 94 | 96 | {"rgbimg", initrgbimg}, | |
| 95 | 97 | #endif | |
| 96 | 98 | {"signal", initsignal}, | |
| 97 | - {"sha", initsha}, | ||
| 99 | + {"_sha", init_sha}, | ||
| 100 | + {"_sha256", init_sha256}, | ||
| 101 | + {"_sha512", init_sha512}, | ||
| 98 | 102 | {"strop", initstrop}, | |
| 99 | 103 | {"struct", initstruct}, | |
| 100 | 104 | {"time", inittime}, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2763,6 +2763,60 @@ | |||
| 2763 | 2763 | PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/> | |
| 2764 | 2764 | </FileConfiguration> | |
| 2765 | 2765 | </File> | |
| 2766 | + <File | ||
| 2767 | + RelativePath="..\Modules\shamodule256.c"> | ||
| 2768 | + <FileConfiguration | ||
| 2769 | + Name="Release|Win32"> | ||
| 2770 | + <Tool | ||
| 2771 | + Name="VCCLCompilerTool" | ||
| 2772 | + Optimization="2" | ||
| 2773 | + AdditionalIncludeDirectories="" | ||
| 2774 | + PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/> | ||
| 2775 | + </FileConfiguration> | ||
| 2776 | + <FileConfiguration | ||
| 2777 | + Name="Debug|Win32"> | ||
| 2778 | + <Tool | ||
| 2779 | + Name="VCCLCompilerTool" | ||
| 2780 | + Optimization="0" | ||
| 2781 | + AdditionalIncludeDirectories="" | ||
| 2782 | + PreprocessorDefinitions="_DEBUG;USE_DL_EXPORT;WIN32;_WINDOWS;$(NoInherit)"/> | ||
| 2783 | + </FileConfiguration> | ||
| 2784 | + <FileConfiguration | ||
| 2785 | + Name="ReleaseItanium|Win32"> | ||
| 2786 | + <Tool | ||
| 2787 | + Name="VCCLCompilerTool" | ||
| 2788 | + Optimization="2" | ||
| 2789 | + AdditionalIncludeDirectories="" | ||
| 2790 | + PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/> | ||
| 2791 | + </FileConfiguration> | ||
| 2792 | + </File> | ||
| 2793 | + <File | ||
| 2794 | + RelativePath="..\Modules\shamodule512.c"> | ||
| 2795 | + <FileConfiguration | ||
| 2796 | + Name="Release|Win32"> | ||
| 2797 | + <Tool | ||
| 2798 | + Name="VCCLCompilerTool" | ||
| 2799 | + Optimization="2" | ||
| 2800 | + AdditionalIncludeDirectories="" | ||
| 2801 | + PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/> | ||
| 2802 | + </FileConfiguration> | ||
| 2803 | + <FileConfiguration | ||
| 2804 | + Name="Debug|Win32"> | ||
| 2805 | + <Tool | ||
| 2806 | + Name="VCCLCompilerTool" | ||
| 2807 | + Optimization="0" | ||
| 2808 | + AdditionalIncludeDirectories="" | ||
| 2809 | + PreprocessorDefinitions="_DEBUG;USE_DL_EXPORT;WIN32;_WINDOWS;$(NoInherit)"/> | ||
| 2810 | + </FileConfiguration> | ||
| 2811 | + <FileConfiguration | ||
| 2812 | + Name="ReleaseItanium|Win32"> | ||
| 2813 | + <Tool | ||
| 2814 | + Name="VCCLCompilerTool" | ||
| 2815 | + Optimization="2" | ||
| 2816 | + AdditionalIncludeDirectories="" | ||
| 2817 | + PreprocessorDefinitions="NDEBUG;WIN32;_WINDOWS;USE_DL_EXPORT;$(NoInherit)"/> | ||
| 2818 | + </FileConfiguration> | ||
| 2819 | + </File> | ||
| 2766 | 2820 | <File | |
| 2767 | 2821 | RelativePath="..\Modules\signalmodule.c"> | |
| 2768 | 2822 | <FileConfiguration | |
| Back | FazBrowse Home | New Git URL |
0 commit comments