Skip to content
Snippets Groups Projects
Commit 4cf061a8 authored by Niels Möller's avatar Niels Möller
Browse files

* x86/aes-encrypt.asm (nettle_aes_encrypt): Renamed function to

use the nettle_ prefix.
* x86/aes-decrypt.asm (nettle_aes_decrypt): Likewise.
* sparc/aes.asm (_nettle_aes_crypt): Likewise.

Rev: src/nettle/x86/aes-decrypt.asm:1.17
Rev: src/nettle/x86/aes-encrypt.asm:1.18
parent bf4cce19
No related branches found
No related tags found
No related merge requests found
......@@ -24,9 +24,9 @@ C MA 02111-1307, USA.
C uint8_t *src)
.text
.align 16
.globl aes_decrypt
.type aes_decrypt,@function
aes_decrypt:
.globl nettle_aes_decrypt
.type nettle_aes_decrypt,@function
nettle_aes_decrypt:
C save all registers that need to be saved
pushl %ebx C 16(%esp)
pushl %ebp C 12(%esp)
......
......@@ -35,9 +35,9 @@ C %edi is a temporary, often used as an accumulator.
C uint8_t *src)
.text
.align 16
.globl aes_encrypt
.type aes_encrypt,@function
aes_encrypt:
.globl nettle_aes_encrypt
.type nettle_aes_encrypt,@function
nettle_aes_encrypt:
C save all registers that need to be saved
pushl %ebx C 16(%esp)
pushl %ebp C 12(%esp)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment