z_crypt 1.0

z_crypt 1.0 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 623
  • Released: Jun 6, 2007

z_crypt 1.0 Description

This module show a way to simple data encryption. Characters are mapped to a key via replacement.

Though simple, this is a good method for encrypting data if the data is compressed before or after the encryption process.

The functions provided by this recipe are meant to be used in a larger encryption scheme. Definitions are specially constructed strings that come from the defintion function (which can produce "named" definitions).

Keys can be extracted from the definitions by using the key function. The select argument should either be True or False. Data encrypted with "True" of a definition can be decrypted with the "False" of a definition and visa-versa.

z crypt Bookmark

Hyperlink code:
Hyperlink for Forum code:

z_crypt 1.0 Script Download Notice

Top 4 Download periodically updates information of z_crypt 1.0 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. z_crypt 1.0 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Octal Encryption

This script helps you to get the octal representation of text. ...
Python

An interval mapping data structure

... kind of dictionary which allows you to map data intervals to values. You can then query the ... O(log2 n) insert and lookup time. The insert algorithm tries to do "the right thing" when overlapping intervals are inserted. As a general rule, an inserted interval overrides every other mapping which was ...
Python

Rating class with mapping interface

Rating class with mapping interface script deals with items sorted by value and accessed by key or rating index. ...
Python

Grouping objects into disjoint sets

... together into disjoint sets when a full-blown graph data structure would be overkill. Objects can be joined using .join(), tested for connectedness using joined(), and all disjoint sets can be retreived using get(). The objects being joined must be hashable. ...
Python

All k subsets from an n set

This script yields each subset of size k from a super set of size n. There are two methods. The first operates on sets of integers of the form range(n). The seconds operates on arbitrary sets or lists. ...
Python