Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacobpclouse/526-hw-2-cbc
The second homework for ICSI 526 in Spring 2023
https://github.com/jacobpclouse/526-hw-2-cbc
Last synced: 4 days ago
JSON representation
The second homework for ICSI 526 in Spring 2023
- Host: GitHub
- URL: https://github.com/jacobpclouse/526-hw-2-cbc
- Owner: jacobpclouse
- Created: 2023-02-17T14:21:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-03-21T02:10:19.000Z (over 1 year ago)
- Last Synced: 2024-03-12T01:37:14.863Z (8 months ago)
- Language: Java
- Size: 5.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 526-HW-2-CBC
The second homework for ICSI 526 in Spring 2023
AES Python Code used: https://github.com/boppreh/aes# Resources Used:
- How to Execute and Run Java Code from the Terminal: https://www.freecodecamp.org/news/how-to-execute-and-run-java-code/
- Generate Random numbers with Java: https://www.geeksforgeeks.org/generating-random-numbers-in-java/
- Fill an array with random numbers: https://www.tutorialspoint.com/generate-a-random-array-of-integers-in-java
- lossy conversion from int to byte? [duplicate]: https://stackoverflow.com/questions/28623477/lossy-conversion-from-int-to-byte# OLD (Python)
- XOR in Python: How to Use Bitwise XOR Operator: https://favtutor.com/blogs/xor-python
- Break a list into chunks of size N in Python: https://www.geeksforgeeks.org/break-list-chunks-size-n-python/
- How to convert Python string to bytes?: https://flexiple.com/python/python-string-to-bytes/
- Python | Convert String to Binary: https://www.geeksforgeeks.org/python-convert-string-to-binary/
- Convert binary to string using Python: https://www.geeksforgeeks.org/convert-binary-to-string-using-python/
- AES Encryption & Decryption In Python: Implementation, Modes & Key Management: https://onboardbase.com/blog/aes-encryption-decryption/
- How can I do a binary encoding of a string in python?: https://stackoverflow.com/questions/12175417/how-can-i-do-a-binary-encoding-of-a-string-in-python
- Simple Python example of AES in ECB mode: https://gist.github.com/h0rn3t/4216cf787b43060b5afc2d50086918bc
- Pure Python AES: https://github.com/boppreh/aes