Team:Davidson-Missouri Western/Color Plots

From 2008.igem.org

(Difference between revisions)
Line 23: Line 23:
This code makes color plots for each hash output. Each color plot includes all messages (of indicated length) and keys that hash to that hash output. The user must input the length of messages to be plotted, the character the alphabet starts with, the character the alphabet ends with, and the hashing method desired.
This code makes color plots for each hash output. Each color plot includes all messages (of indicated length) and keys that hash to that hash output. The user must input the length of messages to be plotted, the character the alphabet starts with, the character the alphabet ends with, and the hashing method desired.
-
[[Media:Allmestot.m|Allmestot]]%to make color plot with messages and keys and corresponding hash value
+
'''Color Plots Sorted by Messages Inputed'''
-
%sorted by message
+
-
function make = allmestot(X,Y,L,T)
+
-
[[Media:Eachmestot.m|Eachmestot]]
+
[[Media:Allmestot.m|All Messages in Single Plot]]
 +
 
 +
This code makes a color plot with all messages (of indicated length), keys, and corresponding hash output sorted by messages (in alphabetical order).The user must input the length of messages to be plotted, the character the alphabet starts with, the character the alphabet ends with, and the hashing method desired.
 +
 
 +
[[Media:Eachmestot.m|Messages of Same 1st Character in Same Plot]]
 +
 
 +
This code makes color plots for each set of messages (of indicated length) with same 1st character. Each color plot includes each set of messages with same 1st character, with messages and keys and corresponding hash value
 +
%sorted by message (each set of messages starting with same letter and
 +
%corresponding set of keys and hash values in diferent color plots)
 +
function make = eachmestot(X,Y,L,T)
[[Media:Allkey.m|Allkey]]
[[Media:Allkey.m|Allkey]]

Revision as of 06:18, 29 October 2008

The Models

Split Model

This code hashes all messages with the split model to a single character in the output. The user must input a message in string format, a key (one character) in string format, the number of characters in user's alphabet, and the decimal value (ascii) of the starting character of the alphabet.

Spoke Model

This code hashes all messages with the spoke model to any fixed amount of characters in the output. The user must input a message in string format, a key (one character) in string format, the number of characters in the user's alphabet, and the number of characters desired in the output. This code assumes that the decimal value of the starting character of the alphabet is 0.

Color Plot Generator

Color Plot Generator

Color Plots Sorted by Hash Output

All Outputs in Single Plot

This code makes a color plot with all possible messages (of indicated length) and keys sorted by the outputs each message/key combination hashes to. The user must input the length of messages to be plotted, the character the alphabet starts with, the character the alphabet ends with, and the hashing method desired.

Each Output in Separate Plot

This code makes color plots for each hash output. Each color plot includes all messages (of indicated length) and keys that hash to that hash output. The user must input the length of messages to be plotted, the character the alphabet starts with, the character the alphabet ends with, and the hashing method desired.

Color Plots Sorted by Messages Inputed

All Messages in Single Plot

This code makes a color plot with all messages (of indicated length), keys, and corresponding hash output sorted by messages (in alphabetical order).The user must input the length of messages to be plotted, the character the alphabet starts with, the character the alphabet ends with, and the hashing method desired.

Messages of Same 1st Character in Same Plot

This code makes color plots for each set of messages (of indicated length) with same 1st character. Each color plot includes each set of messages with same 1st character, with messages and keys and corresponding hash value %sorted by message (each set of messages starting with same letter and %corresponding set of keys and hash values in diferent color plots) function make = eachmestot(X,Y,L,T)

Allkey

Eachkey


Hashkey

Keychain