exiftool-vendored.exe 12.80.0 → 12.82.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (253) hide show
  1. package/README.md +6 -0
  2. package/bin/exiftool.exe +0 -0
  3. package/bin/exiftool_files/Changes +44 -0
  4. package/bin/exiftool_files/Licenses_Strawberry_Perl.zip +0 -0
  5. package/bin/exiftool_files/README +3 -2
  6. package/bin/exiftool_files/exiftool.pl +36 -14
  7. package/bin/exiftool_files/lib/Archive/Zip/Archive.pm +399 -65
  8. package/bin/exiftool_files/lib/Archive/Zip/DirectoryMember.pm +1 -1
  9. package/bin/exiftool_files/lib/Archive/Zip/FileMember.pm +1 -1
  10. package/bin/exiftool_files/lib/Archive/Zip/Member.pm +499 -195
  11. package/bin/exiftool_files/lib/Archive/Zip/NewFileMember.pm +1 -1
  12. package/bin/exiftool_files/lib/Archive/Zip/StringMember.pm +2 -2
  13. package/bin/exiftool_files/lib/Archive/Zip/ZipFileMember.pm +79 -20
  14. package/bin/exiftool_files/lib/Archive/Zip.pm +179 -29
  15. package/bin/exiftool_files/lib/AutoLoader.pm +453 -0
  16. package/bin/exiftool_files/lib/B/Deparse.pm +209 -137
  17. package/bin/exiftool_files/lib/B.pm +1 -1
  18. package/bin/exiftool_files/lib/Benchmark.pm +1123 -0
  19. package/bin/exiftool_files/lib/Class/Struct.pm +2 -2
  20. package/bin/exiftool_files/lib/Compress/Raw/Bzip2.pm +14 -9
  21. package/bin/exiftool_files/lib/Compress/Raw/Lzma.pm +982 -0
  22. package/bin/exiftool_files/lib/Compress/Raw/Zlib.pm +91 -86
  23. package/bin/exiftool_files/lib/Compress/Zlib.pm +105 -100
  24. package/bin/exiftool_files/lib/Config.pm +9 -9
  25. package/bin/exiftool_files/lib/Config_heavy.pl +36 -33
  26. package/bin/exiftool_files/lib/CryptX.pm +2 -82
  27. package/bin/exiftool_files/lib/Data/Dumper.pm +2 -2
  28. package/bin/exiftool_files/lib/Digest/MD5.pm +12 -9
  29. package/bin/exiftool_files/lib/Digest/Perl/MD5.pm +1 -191
  30. package/bin/exiftool_files/lib/Digest/base.pm +26 -20
  31. package/bin/exiftool_files/lib/DynaLoader.pm +7 -4
  32. package/bin/exiftool_files/lib/Encode.pm +3 -3
  33. package/bin/exiftool_files/lib/Errno.pm +13 -13
  34. package/bin/exiftool_files/lib/Exporter/Heavy.pm +2 -2
  35. package/bin/exiftool_files/lib/Exporter.pm +1 -1
  36. package/bin/exiftool_files/lib/ExtUtils/Command/MM.pm +323 -0
  37. package/bin/exiftool_files/lib/ExtUtils/Command.pm +382 -0
  38. package/bin/exiftool_files/lib/File/Find.pm +1 -1
  39. package/bin/exiftool_files/lib/File/Glob.pm +1 -8
  40. package/bin/exiftool_files/lib/File/GlobMapper.pm +2 -2
  41. package/bin/exiftool_files/lib/File/HomeDir/Darwin/Carbon.pm +2 -40
  42. package/bin/exiftool_files/lib/File/HomeDir/Darwin/Cocoa.pm +2 -34
  43. package/bin/exiftool_files/lib/File/HomeDir/Darwin.pm +2 -28
  44. package/bin/exiftool_files/lib/File/HomeDir/Driver.pm +2 -35
  45. package/bin/exiftool_files/lib/File/HomeDir/FreeDesktop.pm +2 -62
  46. package/bin/exiftool_files/lib/File/HomeDir/MacOS9.pm +2 -53
  47. package/bin/exiftool_files/lib/File/HomeDir/Test.pm +2 -43
  48. package/bin/exiftool_files/lib/File/HomeDir/Unix.pm +2 -53
  49. package/bin/exiftool_files/lib/File/HomeDir/Windows.pm +2 -69
  50. package/bin/exiftool_files/lib/File/HomeDir.pm +5 -416
  51. package/bin/exiftool_files/lib/File/Path.pm +3 -3
  52. package/bin/exiftool_files/lib/File/Spec/Win32.pm +2 -2
  53. package/bin/exiftool_files/lib/File/Temp.pm +70 -35
  54. package/bin/exiftool_files/lib/File/Which.pm +1 -240
  55. package/bin/exiftool_files/lib/File/stat.pm +3 -2
  56. package/bin/exiftool_files/lib/IO/Compress/Adapter/Bzip2.pm +16 -17
  57. package/bin/exiftool_files/lib/IO/Compress/Adapter/Deflate.pm +19 -20
  58. package/bin/exiftool_files/lib/IO/Compress/Base/Common.pm +5 -5
  59. package/bin/exiftool_files/lib/IO/Compress/Base.pm +35 -26
  60. package/bin/exiftool_files/lib/IO/Compress/Brotli.pm +159 -0
  61. package/bin/exiftool_files/lib/IO/Compress/Bzip2.pm +50 -25
  62. package/bin/exiftool_files/lib/IO/Compress/Gzip/Constants.pm +6 -6
  63. package/bin/exiftool_files/lib/IO/Compress/Gzip.pm +58 -32
  64. package/bin/exiftool_files/lib/IO/Compress/RawDeflate.pm +63 -38
  65. package/bin/exiftool_files/lib/IO/Compress/Zlib/Extra.pm +20 -20
  66. package/bin/exiftool_files/lib/IO/Dir.pm +1 -1
  67. package/bin/exiftool_files/lib/IO/File.pm +1 -1
  68. package/bin/exiftool_files/lib/IO/Handle.pm +1 -21
  69. package/bin/exiftool_files/lib/IO/Pipe.pm +1 -1
  70. package/bin/exiftool_files/lib/IO/Seekable.pm +1 -1
  71. package/bin/exiftool_files/lib/IO/Select.pm +16 -2
  72. package/bin/exiftool_files/lib/IO/Socket/INET.pm +14 -9
  73. package/bin/exiftool_files/lib/IO/Socket/UNIX.pm +17 -1
  74. package/bin/exiftool_files/lib/IO/Socket.pm +474 -126
  75. package/bin/exiftool_files/lib/IO/String.pm +425 -0
  76. package/bin/exiftool_files/lib/IO/Uncompress/Adapter/Inflate.pm +13 -14
  77. package/bin/exiftool_files/lib/IO/Uncompress/Base.pm +142 -132
  78. package/bin/exiftool_files/lib/IO/Uncompress/Brotli.pm +119 -0
  79. package/bin/exiftool_files/lib/IO/Uncompress/Gunzip.pm +43 -37
  80. package/bin/exiftool_files/lib/IO/Uncompress/RawInflate.pm +49 -43
  81. package/bin/exiftool_files/lib/IO.pm +2 -2
  82. package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +44 -31
  83. package/bin/exiftool_files/lib/Image/ExifTool/CanonVRD.pm +2 -2
  84. package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +20 -7
  85. package/bin/exiftool_files/lib/Image/ExifTool/GM.pm +543 -0
  86. package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.pm +332 -149
  87. package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +9 -4
  88. package/bin/exiftool_files/lib/Image/ExifTool/M2TS.pm +32 -4
  89. package/bin/exiftool_files/lib/Image/ExifTool/MakerNotes.pm +2 -2
  90. package/bin/exiftool_files/lib/Image/ExifTool/Microsoft.pm +1 -1
  91. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +331 -22
  92. package/bin/exiftool_files/lib/Image/ExifTool/NikonCustom.pm +55 -1
  93. package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +1 -0
  94. package/bin/exiftool_files/lib/Image/ExifTool/OpenEXR.pm +21 -3
  95. package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +3 -3
  96. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +40 -24
  97. package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +61 -30
  98. package/bin/exiftool_files/lib/Image/ExifTool/README +2 -0
  99. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +1 -1
  100. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +4815 -4775
  101. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +931 -617
  102. package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +30 -8
  103. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +10 -4
  104. package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +4 -2
  105. package/bin/exiftool_files/lib/Image/ExifTool.pm +77 -41
  106. package/bin/exiftool_files/lib/Image/ExifTool.pod +24 -11
  107. package/bin/exiftool_files/lib/List/Util.pm +97 -8
  108. package/bin/exiftool_files/lib/MIME/Base64.pm +5 -5
  109. package/bin/exiftool_files/lib/MIME/Charset/_Compat.pm +106 -0
  110. package/bin/exiftool_files/lib/MIME/Charset.pm +1303 -0
  111. package/bin/exiftool_files/lib/Math/BigFloat.pm +444 -27
  112. package/bin/exiftool_files/lib/Math/BigInt/Calc.pm +296 -313
  113. package/bin/exiftool_files/lib/Math/BigInt/FastCalc.pm +1 -1
  114. package/bin/exiftool_files/lib/Math/BigInt/GMP.pm +2 -115
  115. package/bin/exiftool_files/lib/Math/BigInt/LTM.pm +2 -24
  116. package/bin/exiftool_files/lib/Math/BigInt/Lib.pm +61 -32
  117. package/bin/exiftool_files/lib/Math/BigInt.pm +292 -107
  118. package/bin/exiftool_files/lib/POSIX.pm +1 -1
  119. package/bin/exiftool_files/lib/PerlIO/scalar.pm +41 -0
  120. package/bin/exiftool_files/lib/PerlIO.pm +397 -0
  121. package/bin/exiftool_files/lib/Portable/CPAN.pm +94 -94
  122. package/bin/exiftool_files/lib/Portable/Config.pm +94 -94
  123. package/bin/exiftool_files/lib/Portable/FileSpec.pm +180 -180
  124. package/bin/exiftool_files/lib/Portable/HomeDir.pm +110 -110
  125. package/bin/exiftool_files/lib/Portable/LoadYaml.pm +430 -430
  126. package/bin/exiftool_files/lib/Portable/minicpan.pm +55 -55
  127. package/bin/exiftool_files/lib/Portable.pm +246 -320
  128. package/bin/exiftool_files/lib/Scalar/Util.pm +9 -4
  129. package/bin/exiftool_files/lib/Socket.pm +16 -12
  130. package/bin/exiftool_files/lib/Storable.pm +1444 -1441
  131. package/bin/exiftool_files/lib/TAP/Base.pm +133 -0
  132. package/bin/exiftool_files/lib/TAP/Formatter/Base.pm +467 -0
  133. package/bin/exiftool_files/lib/TAP/Formatter/Color.pm +116 -0
  134. package/bin/exiftool_files/lib/TAP/Formatter/Console/ParallelSession.pm +201 -0
  135. package/bin/exiftool_files/lib/TAP/Formatter/Console/Session.pm +205 -0
  136. package/bin/exiftool_files/lib/TAP/Formatter/Console.pm +100 -0
  137. package/bin/exiftool_files/lib/TAP/Formatter/File/Session.pm +95 -0
  138. package/bin/exiftool_files/lib/TAP/Formatter/File.pm +56 -0
  139. package/bin/exiftool_files/lib/TAP/Formatter/Session.pm +220 -0
  140. package/bin/exiftool_files/lib/TAP/Harness/Beyond.pod +426 -0
  141. package/bin/exiftool_files/lib/TAP/Harness/Env.pm +215 -0
  142. package/bin/exiftool_files/lib/TAP/Harness.pm +1054 -0
  143. package/bin/exiftool_files/lib/TAP/Object.pm +155 -0
  144. package/bin/exiftool_files/lib/TAP/Parser/Aggregator.pm +414 -0
  145. package/bin/exiftool_files/lib/TAP/Parser/Grammar.pm +584 -0
  146. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Array.pm +100 -0
  147. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Process.pm +378 -0
  148. package/bin/exiftool_files/lib/TAP/Parser/Iterator/Stream.pm +116 -0
  149. package/bin/exiftool_files/lib/TAP/Parser/Iterator.pm +162 -0
  150. package/bin/exiftool_files/lib/TAP/Parser/IteratorFactory.pm +339 -0
  151. package/bin/exiftool_files/lib/TAP/Parser/Multiplexer.pm +194 -0
  152. package/bin/exiftool_files/lib/TAP/Parser/Result/Bailout.pm +62 -0
  153. package/bin/exiftool_files/lib/TAP/Parser/Result/Comment.pm +60 -0
  154. package/bin/exiftool_files/lib/TAP/Parser/Result/Plan.pm +119 -0
  155. package/bin/exiftool_files/lib/TAP/Parser/Result/Pragma.pm +62 -0
  156. package/bin/exiftool_files/lib/TAP/Parser/Result/Test.pm +271 -0
  157. package/bin/exiftool_files/lib/TAP/Parser/Result/Unknown.pm +48 -0
  158. package/bin/exiftool_files/lib/TAP/Parser/Result/Version.pm +62 -0
  159. package/bin/exiftool_files/lib/TAP/Parser/Result/YAML.pm +61 -0
  160. package/bin/exiftool_files/lib/TAP/Parser/Result.pm +297 -0
  161. package/bin/exiftool_files/lib/TAP/Parser/ResultFactory.pm +183 -0
  162. package/bin/exiftool_files/lib/TAP/Parser/Scheduler/Job.pm +127 -0
  163. package/bin/exiftool_files/lib/TAP/Parser/Scheduler/Spinner.pm +61 -0
  164. package/bin/exiftool_files/lib/TAP/Parser/Scheduler.pm +448 -0
  165. package/bin/exiftool_files/lib/TAP/Parser/Source.pm +381 -0
  166. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Executable.pm +184 -0
  167. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/File.pm +136 -0
  168. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Handle.pm +124 -0
  169. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/Perl.pm +370 -0
  170. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler/RawTAP.pm +130 -0
  171. package/bin/exiftool_files/lib/TAP/Parser/SourceHandler.pm +191 -0
  172. package/bin/exiftool_files/lib/TAP/Parser/YAMLish/Reader.pm +332 -0
  173. package/bin/exiftool_files/lib/TAP/Parser/YAMLish/Writer.pm +254 -0
  174. package/bin/exiftool_files/lib/TAP/Parser.pm +1931 -0
  175. package/bin/exiftool_files/lib/Test/Builder/Formatter.pm +107 -0
  176. package/bin/exiftool_files/lib/Test/Builder/IO/Scalar.pm +659 -0
  177. package/bin/exiftool_files/lib/Test/Builder/Module.pm +182 -0
  178. package/bin/exiftool_files/lib/Test/Builder/Tester/Color.pm +51 -0
  179. package/bin/exiftool_files/lib/Test/Builder/Tester.pm +675 -0
  180. package/bin/exiftool_files/lib/Test/Builder/TodoDiag.pm +68 -0
  181. package/bin/exiftool_files/lib/Test/Builder.pm +2653 -0
  182. package/bin/exiftool_files/lib/Test/Harness.pm +618 -0
  183. package/bin/exiftool_files/lib/Test/More.pm +1997 -0
  184. package/bin/exiftool_files/lib/Test/Simple.pm +220 -0
  185. package/bin/exiftool_files/lib/Test/Tester/Capture.pm +241 -0
  186. package/bin/exiftool_files/lib/Test/Tester/CaptureRunner.pm +79 -0
  187. package/bin/exiftool_files/lib/Test/Tester/Delegate.pm +45 -0
  188. package/bin/exiftool_files/lib/Test/Tester.pm +695 -0
  189. package/bin/exiftool_files/lib/Test/Tutorial.pod +618 -0
  190. package/bin/exiftool_files/lib/Test/use/ok.pm +64 -0
  191. package/bin/exiftool_files/lib/Text/ParseWords.pm +303 -0
  192. package/bin/exiftool_files/lib/Tie/StdHandle.pm +2 -2
  193. package/bin/exiftool_files/lib/Time/HiRes.pm +73 -68
  194. package/bin/exiftool_files/lib/Time/Local.pm +82 -35
  195. package/bin/exiftool_files/lib/Time/Piece.pm +19 -4
  196. package/bin/exiftool_files/lib/Time/Seconds.pm +1 -1
  197. package/bin/exiftool_files/lib/UNIVERSAL.pm +203 -0
  198. package/bin/exiftool_files/lib/Unicode/GCString.pm +60 -0
  199. package/bin/exiftool_files/lib/Unicode/LineBreak/Constants.pm +68 -0
  200. package/bin/exiftool_files/lib/Unicode/LineBreak.pm +248 -0
  201. package/bin/exiftool_files/lib/Win32/API/Struct.pm +1 -177
  202. package/bin/exiftool_files/lib/Win32/API/Type.pm +1 -100
  203. package/bin/exiftool_files/lib/Win32/API.pm +1 -830
  204. package/bin/exiftool_files/lib/Win32/FindFile.pm +2 -123
  205. package/bin/exiftool_files/lib/Win32.pm +213 -89
  206. package/bin/exiftool_files/lib/Win32API/File.pm +1 -1
  207. package/bin/exiftool_files/lib/auto/B/B.xs.dll +0 -0
  208. package/bin/exiftool_files/lib/auto/Compress/Raw/Bzip2/Bzip2.xs.dll +0 -0
  209. package/bin/exiftool_files/lib/auto/Compress/Raw/Lzma/Lzma.xs.dll +0 -0
  210. package/bin/exiftool_files/lib/auto/Compress/Raw/Lzma/autosplit.ix +3 -0
  211. package/bin/exiftool_files/lib/auto/Compress/Raw/Zlib/Zlib.xs.dll +0 -0
  212. package/bin/exiftool_files/lib/auto/CryptX/CryptX.xs.dll +0 -0
  213. package/bin/exiftool_files/lib/auto/Cwd/Cwd.xs.dll +0 -0
  214. package/bin/exiftool_files/lib/auto/Data/Dumper/Dumper.xs.dll +0 -0
  215. package/bin/exiftool_files/lib/auto/Digest/MD5/MD5.xs.dll +0 -0
  216. package/bin/exiftool_files/lib/auto/Digest/SHA/SHA.xs.dll +0 -0
  217. package/bin/exiftool_files/lib/auto/Encode/Encode.xs.dll +0 -0
  218. package/bin/exiftool_files/lib/auto/Fcntl/Fcntl.xs.dll +0 -0
  219. package/bin/exiftool_files/lib/auto/File/Glob/Glob.xs.dll +0 -0
  220. package/bin/exiftool_files/lib/auto/IO/Compress/Brotli/Brotli.xs.dll +0 -0
  221. package/bin/exiftool_files/lib/auto/IO/IO.xs.dll +0 -0
  222. package/bin/exiftool_files/lib/auto/List/Util/Util.xs.dll +0 -0
  223. package/bin/exiftool_files/lib/auto/MIME/Base64/Base64.xs.dll +0 -0
  224. package/bin/exiftool_files/lib/auto/Math/BigInt/FastCalc/FastCalc.xs.dll +0 -0
  225. package/bin/exiftool_files/lib/auto/Math/BigInt/GMP/GMP.xs.dll +0 -0
  226. package/bin/exiftool_files/lib/auto/POSIX/POSIX.xs.dll +0 -0
  227. package/bin/exiftool_files/lib/auto/PerlIO/scalar/scalar.xs.dll +0 -0
  228. package/bin/exiftool_files/lib/auto/Socket/Socket.xs.dll +0 -0
  229. package/bin/exiftool_files/lib/auto/Storable/Storable.xs.dll +0 -0
  230. package/bin/exiftool_files/lib/auto/Time/HiRes/HiRes.xs.dll +0 -0
  231. package/bin/exiftool_files/lib/auto/Time/Piece/Piece.xs.dll +0 -0
  232. package/bin/exiftool_files/lib/auto/Unicode/LineBreak/LineBreak.xs.dll +0 -0
  233. package/bin/exiftool_files/lib/auto/Win32/API/API.xs.dll +0 -0
  234. package/bin/exiftool_files/lib/auto/Win32/FindFile/FindFile.xs.dll +0 -0
  235. package/bin/exiftool_files/lib/auto/Win32/Win32.xs.dll +0 -0
  236. package/bin/exiftool_files/lib/auto/Win32API/File/File.xs.dll +0 -0
  237. package/bin/exiftool_files/lib/auto/mro/mro.xs.dll +0 -0
  238. package/bin/exiftool_files/lib/auto/re/re.xs.dll +0 -0
  239. package/bin/exiftool_files/lib/feature.pm +49 -17
  240. package/bin/exiftool_files/lib/mro.pm +4 -20
  241. package/bin/exiftool_files/lib/overload.pm +15 -15
  242. package/bin/exiftool_files/lib/parent.pm +10 -2
  243. package/bin/exiftool_files/lib/re.pm +91 -33
  244. package/bin/exiftool_files/lib/warnings.pm +17 -6
  245. package/bin/exiftool_files/libgcc_s_seh-1.dll +0 -0
  246. package/bin/exiftool_files/liblzma-5__.dll +0 -0
  247. package/bin/exiftool_files/libstdc++-6.dll +0 -0
  248. package/bin/exiftool_files/libwinpthread-1.dll +0 -0
  249. package/bin/exiftool_files/perl.exe +0 -0
  250. package/bin/exiftool_files/perl532.dll +0 -0
  251. package/package.json +7 -5
  252. package/bin/exiftool_files/libgcc_s_dw2-1.dll +0 -0
  253. package/bin/exiftool_files/perl530.dll +0 -0
@@ -166,18 +166,18 @@ Header=''
166
166
  Id='$Id'
167
167
  Locker=''
168
168
  Log='$Log'
169
- PATCHLEVEL='30'
169
+ PATCHLEVEL='32'
170
170
  PERL_API_REVISION='5'
171
171
  PERL_API_SUBVERSION='0'
172
- PERL_API_VERSION='30'
172
+ PERL_API_VERSION='32'
173
173
  PERL_CONFIG_SH='true'
174
174
  PERL_PATCHLEVEL=''
175
175
  PERL_REVISION='5'
176
- PERL_SUBVERSION='0'
177
- PERL_VERSION='30'
176
+ PERL_SUBVERSION='1'
177
+ PERL_VERSION='32'
178
178
  RCSfile='$RCSfile'
179
179
  Revision='$Revision'
180
- SUBVERSION='0'
180
+ SUBVERSION='1'
181
181
  Source=''
182
182
  State=''
183
183
  _a='.a'
@@ -189,12 +189,12 @@ alignbytes='8'
189
189
  aphostname=''
190
190
  api_revision='5'
191
191
  api_subversion='0'
192
- api_version='30'
193
- api_versionstring='5.30.0'
192
+ api_version='32'
193
+ api_versionstring='5.32.0'
194
194
  ar='ar'
195
195
  archlib='C:\strawberry\perl\lib'
196
196
  archlibexp='C:\strawberry\perl\lib'
197
- archname='MSWin32-x86-multi-thread-64int'
197
+ archname='MSWin32-x64-multi-thread'
198
198
  archname64=''
199
199
  archobjs=''
200
200
  asctime_r_proto='0'
@@ -213,14 +213,14 @@ cat='type'
213
213
  cc='gcc'
214
214
  cccdlflags=' '
215
215
  ccdlflags=' '
216
- ccflags=' -s -O2 -DWIN32 -D__USE_MINGW_ANSI_STDIO -DPERL_TEXTMODE_SCRIPTS -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -fwrapv -fno-strict-aliasing -mms-bitfields'
216
+ ccflags=' -DWIN32 -DWIN64 -D__USE_MINGW_ANSI_STDIO -DPERL_TEXTMODE_SCRIPTS -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -fwrapv -fno-strict-aliasing -mms-bitfields'
217
217
  ccflags_uselargefiles=''
218
218
  ccname='gcc'
219
219
  ccsymbols=''
220
220
  ccversion=''
221
221
  cf_by='strawberry-perl'
222
222
  cf_email='strawberry-perl@project'
223
- cf_time='Thu May 23 09:44:58 2019'
223
+ cf_time='Sun Jan 24 15:01:28 2021'
224
224
  charbits='8'
225
225
  chgrp=''
226
226
  chmod=''
@@ -272,7 +272,8 @@ d_asctime_r='undef'
272
272
  d_asinh='define'
273
273
  d_atanh='define'
274
274
  d_atolf='undef'
275
- d_atoll='undef'
275
+ d_atoll='define'
276
+ d_attribute_always_inline='undef'
276
277
  d_attribute_deprecated='undef'
277
278
  d_attribute_format='undef'
278
279
  d_attribute_malloc='undef'
@@ -696,6 +697,7 @@ d_sitearch='define'
696
697
  d_snprintf='define'
697
698
  d_sockaddr_in6='undef'
698
699
  d_sockaddr_sa_len='undef'
700
+ d_sockaddr_storage='define'
699
701
  d_sockatmark='undef'
700
702
  d_sockatmarkproto='undef'
701
703
  d_socket='define'
@@ -732,10 +734,10 @@ d_strtod_l='undef'
732
734
  d_strtol='define'
733
735
  d_strtold='undef'
734
736
  d_strtold_l='undef'
735
- d_strtoll='undef'
737
+ d_strtoll='define'
736
738
  d_strtoq='undef'
737
739
  d_strtoul='define'
738
- d_strtoull='undef'
740
+ d_strtoull='define'
739
741
  d_strtouq='undef'
740
742
  d_strxfrm='define'
741
743
  d_suidsafe='undef'
@@ -788,6 +790,7 @@ d_voidtty=''
788
790
  d_vsnprintf='define'
789
791
  d_wait4='undef'
790
792
  d_waitpid='define'
793
+ d_wcrtomb='undef'
791
794
  d_wcscmp='define'
792
795
  d_wcstombs='define'
793
796
  d_wcsxfrm='define'
@@ -813,7 +816,7 @@ doublesize='8'
813
816
  drand01='Perl_drand48()'
814
817
  drand48_r_proto='0'
815
818
  dtrace=''
816
- dynamic_ext='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call Hash/Util Hash/Util/FieldHash I18N/Langinfo IO List/Util MIME/Base64 Math/BigInt/FastCalc Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize Win32 Win32API/File XS/APItest XS/Typemap attributes mro re threads threads/shared'
819
+ dynamic_ext='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO List/Util MIME/Base64 Math/BigInt/FastCalc NDBM_File ODBM_File Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize Win32 Win32API/File XS/APItest XS/Typemap attributes mro re threads threads/shared'
817
820
  eagain='EAGAIN'
818
821
  ebcdic='undef'
819
822
  echo='echo'
@@ -828,7 +831,7 @@ endservent_r_proto='0'
828
831
  eunicefix=':'
829
832
  exe_ext='.exe'
830
833
  expr='expr'
831
- extensions='Archive/Tar Attribute/Handlers AutoLoader B CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V Cwd Data/Dumper Devel/PPPort Devel/Peek Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp FileCache Filter/Simple Filter/Util/Call Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags I18N/Langinfo IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP List/Util Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NEXT Net/Ping Opcode POSIX Params/Check Perl/OSType PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version'
834
+ extensions='Archive/Tar Attribute/Handlers AutoLoader B CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V Cwd Data/Dumper Devel/PPPort Devel/Peek Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp FileCache Filter/Simple Filter/Util/Call FindBin GDBM_File Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags I18N/Langinfo IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP List/Util Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NDBM_File NEXT Net/Ping ODBM_File Opcode POSIX Params/Check Perl/OSType PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version'
832
835
  extern_C='extern'
833
836
  extras=''
834
837
  fflushNULL='define'
@@ -1020,7 +1023,7 @@ issymlink=''
1020
1023
  ivdformat='"I64d"'
1021
1024
  ivsize='8'
1022
1025
  ivtype='long long'
1023
- known_extensions='Amiga/ARexx Amiga/Exec Archive/Tar Attribute/Handlers AutoLoader B CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp FileCache Filter/Simple Filter/Util/Call GDBM_File Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags I18N/Langinfo IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 IPC/SysV JSON/PP List/Util Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NDBM_File NEXT Net/Ping ODBM_File Opcode POSIX Params/Check Perl/OSType PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Sys/Syslog Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize VMS/DCLsym VMS/Filespec VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version'
1026
+ known_extensions='Amiga/ARexx Amiga/Exec Archive/Tar Attribute/Handlers AutoLoader B CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp FileCache Filter/Simple Filter/Util/Call FindBin GDBM_File Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags I18N/Langinfo IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 IPC/SysV JSON/PP List/Util Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NDBM_File NEXT Net/Ping ODBM_File Opcode POSIX Params/Check Perl/OSType PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Sys/Syslog Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize VMS/DCLsym VMS/Filespec VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version'
1024
1027
  ksh=''
1025
1028
  ld='g++'
1026
1029
  lddlflags='-mdll -s -L"C:\strawberry\perl\lib\CORE" -L"C:\strawberry\c\lib"'
@@ -1030,8 +1033,8 @@ ldlibpthname=''
1030
1033
  less='less'
1031
1034
  lib_ext='.a'
1032
1035
  libc=''
1033
- libperl='libperl530.a'
1034
- libpth='C:\strawberry\c\lib C:\strawberry\c\i686-w64-mingw32\lib C:\strawberry\c\lib\gcc\i686-w64-mingw32\8.3.0'
1036
+ libperl='libperl532.a'
1037
+ libpth='C:\strawberry\c\lib C:\strawberry\c\x86_64-w64-mingw32\lib C:\strawberry\c\lib\gcc\x86_64-w64-mingw32\8.3.0'
1035
1038
  libs=' -lmoldname -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32'
1036
1039
  libsdirs=''
1037
1040
  libsfiles=''
@@ -1047,11 +1050,11 @@ lns='copy'
1047
1050
  localtime_r_proto='0'
1048
1051
  locincpth='/usr/local/include /opt/local/include /usr/gnu/include /opt/gnu/include /usr/GNU/include /opt/GNU/include'
1049
1052
  loclibpth='/usr/local/lib /opt/local/lib /usr/gnu/lib /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib'
1050
- longdblinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00'
1053
+ longdblinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
1051
1054
  longdblkind='3'
1052
1055
  longdblmantbits='64'
1053
- longdblnanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00'
1054
- longdblsize='12'
1056
+ longdblnanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00'
1057
+ longdblsize='16'
1055
1058
  longlongsize='8'
1056
1059
  longsize='4'
1057
1060
  lp=''
@@ -1084,7 +1087,7 @@ mv=''
1084
1087
  myarchname='MSWin32'
1085
1088
  mydomain=''
1086
1089
  myhostname=''
1087
- myuname='Win32 strawberry-perl 5.30.0.1 #1 Thu May 23 09:43:53 2019 i386'
1090
+ myuname='Win32 strawberry-perl 5.32.1.1 #1 Sun Jan 24 15:00:15 2021 x64'
1088
1091
  n='-n'
1089
1092
  need_va_copy='undef'
1090
1093
  netdb_hlen_type='int'
@@ -1094,7 +1097,7 @@ netdb_net_type='long'
1094
1097
  nm='nm'
1095
1098
  nm_opt=''
1096
1099
  nm_so_opt=''
1097
- nonxs_ext='Archive/Tar Attribute/Handlers AutoLoader CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Config/Perl/V Devel/SelfStubber Digest Dumpvalue Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS File/Fetch File/Find File/Path File/Temp FileCache Filter/Simple Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NEXT Net/Ping Params/Check Perl/OSType PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version'
1100
+ nonxs_ext='Archive/Tar Attribute/Handlers AutoLoader CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Config/Perl/V Devel/SelfStubber Digest Dumpvalue Env Errno Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS File/Fetch File/Find File/Path File/Temp FileCache Filter/Simple FindBin Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NEXT Net/Ping Params/Check Perl/OSType PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version'
1098
1101
  nroff=''
1099
1102
  nvEUformat='"E"'
1100
1103
  nvFUformat='"F"'
@@ -1113,12 +1116,12 @@ old_pthread_create_joinable=''
1113
1116
  optimize='-s -O2'
1114
1117
  orderlib='false'
1115
1118
  osname='MSWin32'
1116
- osvers='10.0.17763.529'
1119
+ osvers='10.0.19042.746'
1117
1120
  otherlibdirs=''
1118
1121
  package='perl5'
1119
1122
  pager='more /e'
1120
1123
  passcat=''
1121
- patchlevel='30'
1124
+ patchlevel='32'
1122
1125
  path_sep=';'
1123
1126
  perl='perl'
1124
1127
  perl5=''
@@ -1139,7 +1142,7 @@ privlib='C:\strawberry\perl\lib'
1139
1142
  privlibexp='C:\strawberry\perl\lib'
1140
1143
  procselfexe=''
1141
1144
  prototype='define'
1142
- ptrsize='4'
1145
+ ptrsize='8'
1143
1146
  quadkind='3'
1144
1147
  quadtype='long long'
1145
1148
  randbits='48'
@@ -1221,7 +1224,7 @@ siteprefix='C:\strawberry\perl\site'
1221
1224
  siteprefixexp='C:\strawberry\perl\site'
1222
1225
  sitescript='C:\strawberry\perl\site\bin'
1223
1226
  sitescriptexp='C:\strawberry\perl\site\bin'
1224
- sizesize='4'
1227
+ sizesize='8'
1225
1228
  sizetype='size_t'
1226
1229
  sleep=''
1227
1230
  smail=''
@@ -1235,9 +1238,9 @@ spitshell=''
1235
1238
  srand48_r_proto='0'
1236
1239
  srandom_r_proto='0'
1237
1240
  src=''
1238
- ssizetype='int'
1241
+ ssizetype='long long'
1239
1242
  st_ino_sign='1'
1240
- st_ino_size='4'
1243
+ st_ino_size='8'
1241
1244
  startperl='#!perl'
1242
1245
  startsh='#!/bin/sh'
1243
1246
  static_ext='Win32CORE'
@@ -1251,7 +1254,7 @@ stdio_stream_array=''
1251
1254
  strerror_r_proto='0'
1252
1255
  strings='/usr/include/string.h'
1253
1256
  submit=''
1254
- subversion='0'
1257
+ subversion='1'
1255
1258
  sysman='/usr/man/man1'
1256
1259
  tail=''
1257
1260
  tar=''
@@ -1342,8 +1345,8 @@ vendorprefix='C:\strawberry\perl\vendor'
1342
1345
  vendorprefixexp='C:\strawberry\perl\vendor'
1343
1346
  vendorscript='C:\strawberry\perl\bin'
1344
1347
  vendorscriptexp='C:\strawberry\perl\bin'
1345
- version='5.30.0'
1346
- version_patchlevel_string='version 30 subversion 0'
1348
+ version='5.32.1'
1349
+ version_patchlevel_string='version 32 subversion 1'
1347
1350
  versiononly='undef'
1348
1351
  vi=''
1349
1352
  xlibpth='/usr/lib/386 /lib/386'
@@ -1361,7 +1364,7 @@ s/(byteorder=)(['"]).*?\2/$1$2$Config::byteorder$2/m;
1361
1364
  my $config_sh_len = length $_;
1362
1365
 
1363
1366
  our $Config_SH_expanded = "\n$_" . << 'EOVIRTUAL';
1364
- ccflags_nolargefiles=' -s -O2 -DWIN32 -D__USE_MINGW_ANSI_STDIO -DPERL_TEXTMODE_SCRIPTS -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -fwrapv -fno-strict-aliasing -mms-bitfields'
1367
+ ccflags_nolargefiles=' -DWIN32 -DWIN64 -D__USE_MINGW_ANSI_STDIO -DPERL_TEXTMODE_SCRIPTS -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -fwrapv -fno-strict-aliasing -mms-bitfields'
1365
1368
  ldflags_nolargefiles='-s -L"C:\strawberry\perl\lib\CORE" -L"C:\strawberry\c\lib"'
1366
1369
  libs_nolargefiles='-lmoldname -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr -lwinmm -lversion -lodbc32 -lodbccp32 -lcomctl32'
1367
1370
  libswanted_nolargefiles=''
@@ -2,7 +2,7 @@ package CryptX;
2
2
 
3
3
  use strict;
4
4
  use warnings ;
5
- our $VERSION = '0.063';
5
+ our $VERSION = '0.069';
6
6
 
7
7
  require XSLoader;
8
8
  XSLoader::load('CryptX', $VERSION);
@@ -54,84 +54,4 @@ sub _encode_json {
54
54
 
55
55
  1;
56
56
 
57
- =pod
58
-
59
- =head1 NAME
60
-
61
- CryptX - Cryptographic toolkit (self-contained, no external libraries needed)
62
-
63
- =head1 DESCRIPTION
64
-
65
- Cryptography in CryptX is based on L<https://github.com/libtom/libtomcrypt>
66
-
67
- Available modules:
68
-
69
- =over
70
-
71
- =item * Symmetric ciphers - see L<Crypt::Cipher> and related modules
72
-
73
- L<Crypt::Cipher::AES>, L<Crypt::Cipher::Anubis>, L<Crypt::Cipher::Blowfish>, L<Crypt::Cipher::Camellia>, L<Crypt::Cipher::CAST5>, L<Crypt::Cipher::DES>,
74
- L<Crypt::Cipher::DES_EDE>, L<Crypt::Cipher::IDEA>, L<Crypt::Cipher::KASUMI>, L<Crypt::Cipher::Khazad>, L<Crypt::Cipher::MULTI2>, L<Crypt::Cipher::Noekeon>,
75
- L<Crypt::Cipher::RC2>, L<Crypt::Cipher::RC5>, L<Crypt::Cipher::RC6>, L<Crypt::Cipher::SAFERP>, L<Crypt::Cipher::SAFER_K128>, L<Crypt::Cipher::SAFER_K64>,
76
- L<Crypt::Cipher::SAFER_SK128>, L<Crypt::Cipher::SAFER_SK64>, L<Crypt::Cipher::SEED>, L<Crypt::Cipher::Serpent>, L<Crypt::Cipher::Skipjack>,
77
- L<Crypt::Cipher::Twofish>, L<Crypt::Cipher::XTEA>
78
-
79
- =item * Block cipher modes
80
-
81
- L<Crypt::Mode::CBC>, L<Crypt::Mode::CFB>, L<Crypt::Mode::CTR>, L<Crypt::Mode::ECB>, L<Crypt::Mode::OFB>
82
-
83
- =item * Stream ciphers
84
-
85
- L<Crypt::Stream::RC4>, L<Crypt::Stream::ChaCha>, L<Crypt::Stream::Salsa20>, L<Crypt::Stream::Sober128>,
86
- L<Crypt::Stream::Sosemanuk>, L<Crypt::Stream::Rabbit>
87
-
88
- =item * Authenticated encryption modes
89
-
90
- L<Crypt::AuthEnc::CCM>, L<Crypt::AuthEnc::EAX>, L<Crypt::AuthEnc::GCM>, L<Crypt::AuthEnc::OCB>, L<Crypt::AuthEnc::ChaCha20Poly1305>
91
-
92
- =item * Hash Functions - see L<Crypt::Digest> and related modules
93
-
94
- L<Crypt::Digest::BLAKE2b_160>, L<Crypt::Digest::BLAKE2b_256>, L<Crypt::Digest::BLAKE2b_384>, L<Crypt::Digest::BLAKE2b_512>,
95
- L<Crypt::Digest::BLAKE2s_128>, L<Crypt::Digest::BLAKE2s_160>, L<Crypt::Digest::BLAKE2s_224>, L<Crypt::Digest::BLAKE2s_256>,
96
- L<Crypt::Digest::CHAES>, L<Crypt::Digest::MD2>, L<Crypt::Digest::MD4>, L<Crypt::Digest::MD5>, L<Crypt::Digest::RIPEMD128>, L<Crypt::Digest::RIPEMD160>,
97
- L<Crypt::Digest::RIPEMD256>, L<Crypt::Digest::RIPEMD320>, L<Crypt::Digest::SHA1>, L<Crypt::Digest::SHA224>, L<Crypt::Digest::SHA256>, L<Crypt::Digest::SHA384>,
98
- L<Crypt::Digest::SHA512>, L<Crypt::Digest::SHA512_224>, L<Crypt::Digest::SHA512_256>, L<Crypt::Digest::Tiger192>, L<Crypt::Digest::Whirlpool>,
99
- L<Crypt::Digest::Keccak224>, L<Crypt::Digest::Keccak256>, L<Crypt::Digest::Keccak384>, L<Crypt::Digest::Keccak512>,
100
- L<Crypt::Digest::SHA3_224>, L<Crypt::Digest::SHA3_256>, L<Crypt::Digest::SHA3_384>, L<Crypt::Digest::SHA3_512>, L<Crypt::Digest::SHAKE>
101
-
102
- =item * Checksums
103
-
104
- L<Crypt::Checksum::Adler32>, L<Crypt::Checksum::CRC32>
105
-
106
- =item * Message Authentication Codes
107
-
108
- L<Crypt::Mac::BLAKE2b>, L<Crypt::Mac::BLAKE2s>, L<Crypt::Mac::F9>, L<Crypt::Mac::HMAC>, L<Crypt::Mac::OMAC>,
109
- L<Crypt::Mac::Pelican>, L<Crypt::Mac::PMAC>, L<Crypt::Mac::XCBC>, L<Crypt::Mac::Poly1305>
110
-
111
- =item * Public key cryptography
112
-
113
- L<Crypt::PK::RSA>, L<Crypt::PK::DSA>, L<Crypt::PK::ECC>, L<Crypt::PK::DH>
114
-
115
- =item * Cryptographically secure random number generators - see L<Crypt::PRNG> and related modules
116
-
117
- L<Crypt::PRNG::Fortuna>, L<Crypt::PRNG::Yarrow>, L<Crypt::PRNG::RC4>, L<Crypt::PRNG::Sober128>, L<Crypt::PRNG::ChaCha20>
118
-
119
- =item * Key derivation functions - PBKDF1, PBKDF2 and HKDF
120
-
121
- L<Crypt::KeyDerivation>
122
-
123
- =item * Other handy functions related to cryptography
124
-
125
- L<Crypt::Misc>
126
-
127
- =back
128
-
129
- =head1 LICENSE
130
-
131
- This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
132
-
133
- =head1 COPYRIGHT
134
-
135
- Copyright (c) 2013+ DCIT, a.s. L<https://www.dcit.cz> / Karel Miko
136
-
137
- =cut
57
+ #line 136
@@ -10,7 +10,7 @@
10
10
  package Data::Dumper;
11
11
 
12
12
  BEGIN {
13
- $VERSION = '2.174'; # Don't forget to set version and release
13
+ $VERSION = '2.174_01'; # Don't forget to set version and release
14
14
  } # date in POD below!
15
15
 
16
16
  #$| = 1;
@@ -1467,7 +1467,7 @@ modify it under the same terms as Perl itself.
1467
1467
 
1468
1468
  =head1 VERSION
1469
1469
 
1470
- Version 2.174
1470
+ Version 2.174_01
1471
1471
 
1472
1472
  =head1 SEE ALSO
1473
1473
 
@@ -1,17 +1,18 @@
1
1
  package Digest::MD5;
2
2
 
3
3
  use strict;
4
- use vars qw($VERSION @ISA @EXPORT_OK);
4
+ use warnings;
5
5
 
6
- $VERSION = '2.55';
6
+ our $VERSION = '2.58';
7
7
 
8
8
  require Exporter;
9
9
  *import = \&Exporter::import;
10
- @EXPORT_OK = qw(md5 md5_hex md5_base64);
10
+ our @EXPORT_OK = qw(md5 md5_hex md5_base64);
11
11
 
12
+ our @ISA;
12
13
  eval {
13
14
  require Digest::base;
14
- push(@ISA, 'Digest::base');
15
+ @ISA = qw/Digest::base/;
15
16
  };
16
17
  if ($@) {
17
18
  my $err = $@;
@@ -231,11 +232,13 @@ md5 digests you might want to append the string "==" to the result.
231
232
 
232
233
  =item $md5->context(@ctx)
233
234
 
234
- Saves or restores the internal state. When called with no arguments,
235
- returns a 3-element list: number of blocks processed, a 16-byte
236
- internal state buffer, then up to 63 bytes of unprocessed data. When
237
- passed those same arguments, restores the state. This is only useful
238
- for specialised operations.
235
+ Saves or restores the internal state.
236
+ When called with no arguments, returns a list:
237
+ number of blocks processed,
238
+ a 16-byte internal state buffer,
239
+ then optionally up to 63 bytes of unprocessed data if there are any.
240
+ When passed those same arguments, restores the state.
241
+ This is only useful for specialised operations.
239
242
 
240
243
  =back
241
244
 
@@ -217,197 +217,7 @@ sub md5_base64 { _encode_base64 &md5 }
217
217
 
218
218
  1;
219
219
 
220
- =head1 NAME
221
-
222
- Digest::MD5::Perl - Perl implementation of Ron Rivests MD5 Algorithm
223
-
224
- =head1 DISCLAIMER
225
-
226
- This is B<not> an interface (like C<Digest::MD5>) but a Perl implementation of MD5.
227
- It is written in perl only and because of this it is slow but it works without C-Code.
228
- You should use C<Digest::MD5> instead of this module if it is available.
229
- This module is only useful for
230
-
231
- =over 4
232
-
233
- =item
234
-
235
- computers where you cannot install C<Digest::MD5> (e.g. lack of a C-Compiler)
236
-
237
- =item
238
-
239
- encrypting only small amounts of data (less than one million bytes). I use it to
240
- hash passwords.
241
-
242
- =item
243
-
244
- educational purposes
245
-
246
- =back
247
-
248
- =head1 SYNOPSIS
249
-
250
- # Functional style
251
- use Digest::MD5 qw(md5 md5_hex md5_base64);
252
-
253
- $hash = md5 $data;
254
- $hash = md5_hex $data;
255
- $hash = md5_base64 $data;
256
-
257
-
258
- # OO style
259
- use Digest::MD5;
260
-
261
- $ctx = Digest::MD5->new;
262
-
263
- $ctx->add($data);
264
- $ctx->addfile(*FILE);
265
-
266
- $digest = $ctx->digest;
267
- $digest = $ctx->hexdigest;
268
- $digest = $ctx->b64digest;
269
-
270
- =head1 DESCRIPTION
271
-
272
- This modules has the same interface as the much faster C<Digest::MD5>. So you can
273
- easily exchange them, e.g.
274
-
275
- BEGIN {
276
- eval {
277
- require Digest::MD5;
278
- import Digest::MD5 'md5_hex'
279
- };
280
- if ($@) { # ups, no Digest::MD5
281
- require Digest::Perl::MD5;
282
- import Digest::Perl::MD5 'md5_hex'
283
- }
284
- }
285
-
286
- If the C<Digest::MD5> module is available it is used and if not you take
287
- C<Digest::Perl::MD5>.
288
-
289
- You can also install the Perl part of Digest::MD5 together with Digest::Perl::MD5
290
- and use Digest::MD5 as normal, it falls back to Digest::Perl::MD5 if it
291
- cannot load its object files.
292
-
293
- For a detailed Documentation see the C<Digest::MD5> module.
294
-
295
- =head1 EXAMPLES
296
-
297
- The simplest way to use this library is to import the md5_hex()
298
- function (or one of its cousins):
299
-
300
- use Digest::Perl::MD5 'md5_hex';
301
- print 'Digest is ', md5_hex('foobarbaz'), "\n";
302
-
303
- The above example would print out the message
304
-
305
- Digest is 6df23dc03f9b54cc38a0fc1483df6e21
306
-
307
- provided that the implementation is working correctly. The same
308
- checksum can also be calculated in OO style:
309
-
310
- use Digest::MD5;
311
-
312
- $md5 = Digest::MD5->new;
313
- $md5->add('foo', 'bar');
314
- $md5->add('baz');
315
- $digest = $md5->hexdigest;
316
-
317
- print "Digest is $digest\n";
318
-
319
- The digest methods are destructive. That means you can only call them
320
- once and the $md5 objects is reset after use. You can make a copy with clone:
321
-
322
- $md5->clone->hexdigest
323
-
324
- =head1 LIMITATIONS
325
-
326
- This implementation of the MD5 algorithm has some limitations:
327
-
328
- =over 4
329
-
330
- =item
331
-
332
- It's slow, very slow. I've done my very best but Digest::MD5 is still about 100 times faster.
333
- You can only encrypt Data up to one million bytes in an acceptable time. But it's very useful
334
- for encrypting small amounts of data like passwords.
335
-
336
- =item
337
-
338
- You can only encrypt up to 2^32 bits = 512 MB on 32bit archs. But You should
339
- use C<Digest::MD5> for those amounts of data anyway.
340
-
341
- =back
342
-
343
- =head1 SEE ALSO
344
-
345
- L<Digest::MD5>
346
-
347
- L<md5(1)>
348
-
349
- RFC 1321
350
-
351
- tools/md5: a small BSD compatible md5 tool written in pure perl.
352
-
353
- =head1 COPYRIGHT
354
-
355
- This library is free software; you can redistribute it and/or
356
- modify it under the same terms as Perl itself.
357
-
358
- Copyright 2000 Christian Lackas, Imperia Software Solutions
359
- Copyright 1998-1999 Gisle Aas.
360
- Copyright 1995-1996 Neil Winton.
361
- Copyright 1991-1992 RSA Data Security, Inc.
362
-
363
- The MD5 algorithm is defined in RFC 1321. The basic C code
364
- implementing the algorithm is derived from that in the RFC and is
365
- covered by the following copyright:
366
-
367
- =over 4
368
-
369
- =item
370
-
371
- Copyright (C) 1991-1992, RSA Data Security, Inc. Created 1991. All
372
- rights reserved.
373
-
374
- License to copy and use this software is granted provided that it
375
- is identified as the "RSA Data Security, Inc. MD5 Message-Digest
376
- Algorithm" in all material mentioning or referencing this software
377
- or this function.
378
-
379
- License is also granted to make and use derivative works provided
380
- that such works are identified as "derived from the RSA Data
381
- Security, Inc. MD5 Message-Digest Algorithm" in all material
382
- mentioning or referencing the derived work.
383
-
384
- RSA Data Security, Inc. makes no representations concerning either
385
- the merchantability of this software or the suitability of this
386
- software for any particular purpose. It is provided "as is"
387
- without express or implied warranty of any kind.
388
-
389
- These notices must be retained in any copies of any part of this
390
- documentation and/or software.
391
-
392
- =back
393
-
394
- This copyright does not prohibit distribution of any version of Perl
395
- containing this extension under the terms of the GNU or Artistic
396
- licenses.
397
-
398
- =head1 AUTHORS
399
-
400
- The original MD5 interface was written by Neil Winton
401
- (<N.Winton (at) axion.bt.co.uk>).
402
-
403
- C<Digest::MD5> was made by Gisle Aas <gisle (at) aas.no> (I took his Interface
404
- and part of the documentation).
405
-
406
- Thanks to Guido Flohr for his 'use integer'-hint.
407
-
408
- This release was made by Christian Lackas <delta (at) lackas.net>.
409
-
410
- =cut
220
+ #line 411
411
221
 
412
222
  __DATA__
413
223
  FF,$a,$b,$c,$d,$_[4],7,0xd76aa478,/* 1 */