Encoding#

This section of this documentation contains information on the classes of Encoding.

class hashily.encoding.ASCII#

Bases: object

static decode(char)#

Returns the decrypted text for ASCII.

Parameters

char (str) โ€“ The text that needs to be decrypted.

Returns

ascii_translated โ€“ The decrypted text.

Return type

str

static encode(char: str)#

Returns the ASCII Translation of the text.

Parameters

char (str) โ€“ The text needs to be encrypted.

Returns

ascii_text โ€“ The encrypted text.

Return type

str

class hashily.encoding.Base32#

Bases: object

static decode(char: str)#

Returns the decrypted text for Base32.

Parameters

char (str) โ€“ The text that needs to be decrypted.

Returns

base32_translated โ€“ The decrypted text.

Return type

str

static encode(char: str)#

Returns the Pure Base32 Translation of the text.

Parameters

char (str) โ€“ The text needs to be encrypted.

Returns

base32_text โ€“ The encrypted text.

Return type

str

class hashily.encoding.Binary#

Bases: object

static decode(char: int)#

Returns the decrypted text for Binary.

Parameters

char (str) โ€“ The text that needs to be decrypted.

Returns

binary_translated โ€“ The decrypted text.

Return type

str

static encode(char: str)#

Returns the Binary Translation of the text.

Parameters

char (str) โ€“ The text needs to be encrypted.

Returns

binary_text โ€“ The encrypted text.

Return type

str

class hashily.encoding.Hexadecimal#

Bases: object

static decode(char: str)#

Returns the decrypted text for Hexadecimal.

Parameters

char (str) โ€“ The text that needs to be decrypted.

Returns

hexadecimal_translated โ€“ The decrypted text.

Return type

str

static encode(char: str)#

Returns the Hexadecimal Translation of the text.

Parameters

char (str) โ€“ The text needs to be encrypted.

Returns

hexadecimal_text โ€“ The encrypted text.

Return type

str

class hashily.encoding.Octal#

Bases: object

static decode(char: str)#

Returns the decrypted text for Octal.

Parameters

char (str) โ€“ The text that needs to be decrypted.

Returns

octal_translated โ€“ The decrypted text.

Return type

str

static encode(char: str)#

Returns the Octal Translation of the text.

Parameters

char (str) โ€“ The text needs to be encrypted.

Returns

octal_text โ€“ The encrypted text.

Return type

str

class hashily.encoding.UnicodePoint#

Bases: object

static decode(char: str)#

Returns the decrypted text for Unicode.

Parameters

char (str) โ€“ The text that needs to be decrypted.

Returns

unicode_translated โ€“ The decrypted text.

Return type

str

static encode(char: str)#

Returns the Unicode Translation of the text.

Parameters

char (str) โ€“ The text needs to be encrypted.

Returns

unicode_text โ€“ The encrypted text.

Return type

str

class hashily.encoding.UrlEncoding#

Bases: object

static decode(char: str)#

Returns the decrypted text for URL Encoding.

Parameters

char (str) โ€“ The text that needs to be decrypted.

Returns

urlencoding_translated โ€“ The decrypted text.

Return type

str

static encode(char: str)#

Returns the URL Encoding Translation of the text.

Parameters

char (str) โ€“ The text needs to be encrypted.

Returns

urlencoding_text โ€“ The encrypted text.

Return type

str