forked from Villavu/Simba
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,395 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
|
||
haval | ||
~~~~~ | ||
|
||
.. code-block:: pascal | ||
function haval(Data: string): string | ||
md4 | ||
~~~ | ||
|
||
.. code-block:: pascal | ||
function md4(Data: string): string | ||
md5 | ||
~~~ | ||
|
||
.. code-block:: pascal | ||
function md5(Data: string): string | ||
rc2_decrypt | ||
~~~~~~~~~~~ | ||
|
||
.. code-block:: pascal | ||
procedure rc2_decrypt(const Key: string; const HashType: THashType; var Data: string) | ||
rc2_encrypt | ||
~~~~~~~~~~~ | ||
|
||
.. code-block:: pascal | ||
procedure rc2_encrypt(const Key: string; const HashType: THashType; var Data: string) | ||
ripemd128 | ||
~~~~~~~~~ | ||
|
||
.. code-block:: pascal | ||
function ripemd128(Data: string): string | ||
ripemd160 | ||
~~~~~~~~~ | ||
|
||
.. code-block:: pascal | ||
function ripemd160(Data: string): string | ||
sha1 | ||
~~~~ | ||
|
||
.. code-block:: pascal | ||
function sha1(Data: string): string | ||
sha256 | ||
~~~~~~ | ||
|
||
.. code-block:: pascal | ||
function sha256(Data: string): string | ||
sha384 | ||
~~~~~~ | ||
|
||
.. code-block:: pascal | ||
function sha384(Data: string): string | ||
sha512 | ||
~~~~~~ | ||
|
||
.. code-block:: pascal | ||
function sha512(Data: string): string | ||
tiger | ||
~~~~~ | ||
|
||
.. code-block:: pascal | ||
function tiger(Data: string): string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.