Passwordzilla Help  
Home page > Help > Template's code Support

 

Help Menu

Description

Mask

Quantity

Template

Seed

Source string

Unique passwords

Open project

Save project

Hash calculator

Template editor

Template's code

Code's examples

Registration

Support

Uninstall

 

 

 

Template's code

 

Library of template's code you can find in the Template Editor.

Code has two parts/groups: code of the data and code of the format of the result.

 

Code of data:

$SOURCE - source string value (for example ABCDEF123);

$MASK - mask value (for example XXX-XXX);

$LENGTH - length of the password without hyphen (for example 6);

$SEED - seed of random password genereator (for example 123,456);

$QUANTITY - quantity of the passwords/keys (for example 999);

$DATE - current date (for example 8/4/2006);

$TIME - current time (for example 7:11:12 PM);

$NEWLINE - next line;

$TAB - tabulation;

 

Code of the format of the result:

This code must be in the function FMT{...} between brackets.

FMT{} - function mean - set format of the passwords and hash results.

$ID - number of password (1,2,3...);

$KEY - password;

$MD5 - md5 hash value of the password;

$CRC32 - crc32 value of the password;

$SAH128 - sah128 hash value of the password;

$GOSTHASH - GostHash value;

$MD2 - md2 value;

$MD4 - md4 value;

$SAH256 - sah256 value;

$SAH384 - sah384 value;

$SAH512 - sah512 value;

$NEWLINE - next line;

$TAB - tabulation;

GROUP[] - group result (for example GROUP[10] - mean add new line after every 10 passwords);

 

*Note: You can use any size of letters for code (for example $date and $Date and $DATE are valid codes of the current date);

**Note: function GROUP[] and FMT{} do not use symbol "$";

For more info see code's examples

 

 

(c) 2012 Softaddress