Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/byut/aes
An implementation of the Advanced Encryption Standard (AES) in Assembly language, utilizing the Intel Advanced Encryption Standard New Instructions (AES-NI)
https://github.com/byut/aes
aes aes-128 aes-256 aes-ni
Last synced: about 2 months ago
JSON representation
An implementation of the Advanced Encryption Standard (AES) in Assembly language, utilizing the Intel Advanced Encryption Standard New Instructions (AES-NI)
- Host: GitHub
- URL: https://github.com/byut/aes
- Owner: byut
- License: mit
- Created: 2024-01-29T12:06:15.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-06-13T16:24:44.000Z (7 months ago)
- Last Synced: 2024-06-13T19:16:37.892Z (7 months ago)
- Topics: aes, aes-128, aes-256, aes-ni
- Language: Assembly
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advanced Encryption Standard
An implementation of the Advanced Encryption Standard (AES) in Assembly language, utilizing the Intel
Advanced Encryption Standard New Instructions (AES-NI).## Overview
An AES (Advanced Encryption Standard) instruction set comprises specialized instructions designed
for efficient AES encryption and decryption operations. Typically integrated into modern processors,
these instructions significantly enhance AES performance compared to software implementations.Currently, this repository offers AES implementation for 128 and 256-bit operations. You should be
able to locate additional examples on the internet that delve into more comprehensive aspects of
AES.