@@ -60,7 +60,7 @@ encode.quaternary12(message: str, secret: str, encoding: str = 'utf') -> str
6060decode.binary8(message: str , encoding: str = ' utf' ) -> str
6161decode.binary16(message: str , encoding: str = ' utf' ) -> str
6262decode.binary24(message: str , encoding: str = ' utf' ) -> str
63- # Decoding functions that deccodes the 'message' attempting to find zero-width characters encoded in a binary format.
63+ # Decoding functions that decodes the 'message' attempting to find zero-width characters encoded in a binary format.
6464# Binary8 will expect the message to be encoded using the binary8 encode function and as such characters being represented with 8 digits.
6565# Binary16 will expect the message to be encoded using the binary16 encode function and as such characters being represented with 16 digits.
6666# Binary24 will expect the message to be encoded using the binary24 encode function and as such characters being represented with 24 digits.
@@ -69,7 +69,7 @@ decode.binary24(message: str, encoding: str = 'utf') -> str
6969decode.trinary6(message: str , encoding: str = ' utf' ) -> str
7070decode.trinary11(message: str , encoding: str = ' utf' ) -> str
7171decode.trinary16(message: str , encoding: str = ' utf' ) -> str
72- # Decoding functions that deccodes the 'message' attempting to find zero-width characters encoded in a trinary format.
72+ # Decoding functions that decodes the 'message' attempting to find zero-width characters encoded in a trinary format.
7373# Trinary6 will expect the message to be encoded using the trinary6 encode function and as such characters being represented with 6 digits.
7474# Trinary11 will expect the message to be encoded using the trinary11 encode function and as such characters being represented with 11 digits.
7575# Trinary16 will expect the message to be encoded using the trinary16 encode function and as such characters being represented with 16 digits.
@@ -78,7 +78,7 @@ decode.trinary16(message: str, encoding: str = 'utf') -> str
7878decode.quaternary4(message: str , encoding: str = ' utf' ) -> str
7979decode.quaternary8(message: str , encoding: str = ' utf' ) -> str
8080decode.quaternary12(message: str , encoding: str = ' utf' ) -> str
81- # Decoding functions that deccodes the 'message' attempting to find zero-width characters encoded in a quaternary format.
81+ # Decoding functions that decodes the 'message' attempting to find zero-width characters encoded in a quaternary format.
8282# Quaternary4 will expect the message to be encoded using the quaternary4 encode function and as such characters being represented with 4 digits.
8383# Quaternary8 will expect the message to be encoded using the quaternary8 encode function and as such characters being represented with 8 digits.
8484# Quaternary12 will expect the message to be encoded using the quaternary12 encode function and as such characters being represented with 12 digits.
0 commit comments