Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revamp md5.py #8065

Merged
merged 46 commits into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
7fcce6e
Add type hints to md5.py
tianyizheng02 Dec 31, 2022
a20ccf8
Rename some vars to snake case
tianyizheng02 Dec 31, 2022
ce2d51f
Specify functions imported from math
tianyizheng02 Dec 31, 2022
d243bf3
Rename vars and functions to be more descriptive
tianyizheng02 Jan 1, 2023
b29ab66
Make tests from test function into doctests
tianyizheng02 Jan 1, 2023
0b5e6a4
Clarify more var names
tianyizheng02 Jan 1, 2023
18d891c
Refactor some MD5 code into preprocess function
tianyizheng02 Jan 1, 2023
27a8b29
Simplify loop indices in get_block_words
tianyizheng02 Jan 1, 2023
885f116
Add more detailed comments, docs, and doctests
tianyizheng02 Jan 1, 2023
20085e2
Merge branch 'TheAlgorithms:master' into md5
tianyizheng02 Jan 2, 2023
f7ba9da
updating DIRECTORY.md
Jan 2, 2023
d289ade
updating DIRECTORY.md
Jan 2, 2023
8b44f10
Merge branch 'TheAlgorithms:master' into master
tianyizheng02 Jan 2, 2023
200fc0d
Merge branch 'TheAlgorithms:master' into master
tianyizheng02 Jan 7, 2023
0d64972
Merge branch 'TheAlgorithms:master' into md5
tianyizheng02 Jan 7, 2023
3332400
Merge branch 'TheAlgorithms:master' into md5
tianyizheng02 Jan 12, 2023
2aea9a2
updating DIRECTORY.md
Jan 12, 2023
3ff65ba
Merge branch 'TheAlgorithms:master' into master
tianyizheng02 Jan 12, 2023
9d1971b
updating DIRECTORY.md
Jan 12, 2023
f2e8fbd
Merge branch 'TheAlgorithms:master' into master
tianyizheng02 Jan 26, 2023
5f404b4
updating DIRECTORY.md
Jan 26, 2023
1b93899
Merge branch 'TheAlgorithms:master' into master
tianyizheng02 Feb 5, 2023
e133a3b
Merge branch 'TheAlgorithms:master' into md5
tianyizheng02 Feb 5, 2023
30ee318
Merge branch 'TheAlgorithms:master' into master
tianyizheng02 Mar 26, 2023
27f57c2
Merge branch 'TheAlgorithms:master' into md5
tianyizheng02 Mar 26, 2023
3fbe643
Add type hints to md5.py
tianyizheng02 Dec 31, 2022
adfe215
Rename some vars to snake case
tianyizheng02 Dec 31, 2022
17fc171
Specify functions imported from math
tianyizheng02 Dec 31, 2022
2400676
Rename vars and functions to be more descriptive
tianyizheng02 Jan 1, 2023
cd501ba
Make tests from test function into doctests
tianyizheng02 Jan 1, 2023
feefe88
Clarify more var names
tianyizheng02 Jan 1, 2023
2b7a465
Refactor some MD5 code into preprocess function
tianyizheng02 Jan 1, 2023
84f7ac3
Simplify loop indices in get_block_words
tianyizheng02 Jan 1, 2023
5fadb6e
Add more detailed comments, docs, and doctests
tianyizheng02 Jan 1, 2023
83bcabc
Merge branch 'md5' of github.com:tianyizheng02/Python into md5
tianyizheng02 Mar 26, 2023
24457b9
updating DIRECTORY.md
Jan 2, 2023
e73d826
Merge branch 'md5' of github.com:tianyizheng02/Python into md5
tianyizheng02 Mar 26, 2023
61d7761
updating DIRECTORY.md
Mar 26, 2023
4959857
Merge branch 'TheAlgorithms:master' into md5
tianyizheng02 Mar 26, 2023
c69bda1
Merge branch 'TheAlgorithms:master' into md5
tianyizheng02 Apr 1, 2023
aa1a18f
updating DIRECTORY.md
Apr 1, 2023
4bec95e
Merge branch 'TheAlgorithms:master' into md5
tianyizheng02 Apr 1, 2023
c71f64a
updating DIRECTORY.md
Apr 1, 2023
17c76ba
Convert str types to bytes
tianyizheng02 Apr 1, 2023
c775f15
Add tests comparing md5_me to hashlib's md5
tianyizheng02 Apr 1, 2023
1f3842e
Replace line-break backslashes with parentheses
tianyizheng02 Apr 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,7 @@
* [Archimedes Principle](physics/archimedes_principle.py)
* [Casimir Effect](physics/casimir_effect.py)
* [Centripetal Force](physics/centripetal_force.py)
* [Grahams Law](physics/grahams_law.py)
* [Horizontal Projectile Motion](physics/horizontal_projectile_motion.py)
* [Hubble Parameter](physics/hubble_parameter.py)
* [Ideal Gas Law](physics/ideal_gas_law.py)
Expand Down
Loading