![]() |
![]() |
![]() |
|
[
About the Wizard's Toolkit ] [ Command-line Tools ] [ Application Program Interface ] [ Install from Source Unix Windows Binary Releases Unix Windows ] [ Download ] [ Search ] [ Sponsors: ] |
AcquireZIPInfo() allocates the ZIPInfo structure. The format of the AcquireZIPInfo method is: ZIPInfo *AcquireZIPInfo(const unsigned long level) A description of each parameter follows: levelentropy level: 1 is best speed, 9 is more entropy. GetZIPChaos() returns ZIP chaos. The format of the GetZIPChaos method is: const StringInfo *GetZIPChaos(const ZIPInfo *zip_info) A description of each parameter follows: zip_infoThe zip info. DestroyZIPInfo() zeros memory associated with the ZIPInfo structure. The format of the DestroyZIPInfo method is: ZIPInfo *DestroyZIPInfo(ZIPInfo *zip_info) A description of each parameter follows: zip_infoThe zip info. IncreaseZIP() compresses the message to increase its entropy. The format of the IncreaseZIP method is:
WizardBooleanType IncreaseZIP(ZIPInfo *zip_info,const StringInfo *message,
ExceptionInfo *exception)
A description of each parameter follows: zip_infoThe address of a structure of type ZIPInfo. messageThe message. exceptionReturn any errors or warnings in this structure. RestoreZIP() uncompresses the message to restore its original entropy. The format of the RestoreZIP method is:
WizardBooleanType RestoreZIP(ZIPInfo *zip_info,const size_t length,
const StringInfo *message,ExceptionInfo *exception)
A description of each parameter follows: zip_infoThe address of a structure of type ZIPInfo. lengthThe total size of the destination buffer, which must be large enough to hold the entire uncompressed data. messageThe message. exceptionReturn any errors or warnings in this structure. |