Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taimoorzaeem/aes
Implemented AES in Intel x86 assembly.
https://github.com/taimoorzaeem/aes
aes-128 aes-encryption assembly intel masm32 x86
Last synced: 20 days ago
JSON representation
Implemented AES in Intel x86 assembly.
- Host: GitHub
- URL: https://github.com/taimoorzaeem/aes
- Owner: taimoorzaeem
- License: gpl-3.0
- Created: 2022-01-07T21:13:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-02T14:25:16.000Z (over 2 years ago)
- Last Synced: 2024-11-23T06:42:49.587Z (3 months ago)
- Topics: aes-128, aes-encryption, assembly, intel, masm32, x86
- Language: Assembly
- Homepage:
- Size: 116 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AES-128-in-x86-Assembly
Implemented AES in Intel x86 assembly.For building on windows:
### Requirements
You must have Microsoft Macro Assembler `ml` installed on your machine.
You will also need Microsoft Incremental Linker `link` for linking with libraries.
Disable windows defender in case it interferes with building.**To build with cmd:**
```
> ml -c /I include -coff aes.asm
> link aes.obj lib\irvine32.lib lib\kernel32.lib /SUBSYSTEM:CONSOLE
```