summaryrefslogtreecommitdiff
path: root/x86
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2013-04-26 09:30:03 +0200
committerNiels Möller <nisse@lysator.liu.se>2013-04-26 09:30:03 +0200
commitb64384fd70dea0a2608713513f02dd2b6301d644 (patch)
tree08b10cfaa65d21158677aac8d2c2dc14816b3d05 /x86
parent3eb603d0d810b9298f5624aaa8a293c4b51e4b2a (diff)
downloadnettle-b64384fd70dea0a2608713513f02dd2b6301d644.tar.gz
Comment updates in asm files.
Diffstat (limited to 'x86')
-rw-r--r--x86/aes-decrypt-internal.asm2
-rw-r--r--x86/aes-encrypt-internal.asm2
-rw-r--r--x86/arcfour-crypt.asm2
-rw-r--r--x86/camellia-crypt-internal.asm2
4 files changed, 4 insertions, 4 deletions
diff --git a/x86/aes-decrypt-internal.asm b/x86/aes-decrypt-internal.asm
index 64e59283..6220c11d 100644
--- a/x86/aes-decrypt-internal.asm
+++ b/x86/aes-decrypt-internal.asm
@@ -57,7 +57,7 @@ C %edi is a temporary, often used as an accumulator.
C _aes_decrypt(struct aes_context *ctx,
C const struct aes_table *T,
- C unsigned length, uint8_t *dst,
+ C size_t length, uint8_t *dst,
C uint8_t *src)
.text
ALIGN(16)
diff --git a/x86/aes-encrypt-internal.asm b/x86/aes-encrypt-internal.asm
index 9fe32fc5..86985ec6 100644
--- a/x86/aes-encrypt-internal.asm
+++ b/x86/aes-encrypt-internal.asm
@@ -57,7 +57,7 @@ C %edi is a temporary, often used as an accumulator.
C _aes_encrypt(struct aes_context *ctx,
C const struct aes_table *T,
- C unsigned length, uint8_t *dst,
+ C size_t length, uint8_t *dst,
C uint8_t *src)
.text
ALIGN(16)
diff --git a/x86/arcfour-crypt.asm b/x86/arcfour-crypt.asm
index 89ee7c9e..7a7a8443 100644
--- a/x86/arcfour-crypt.asm
+++ b/x86/arcfour-crypt.asm
@@ -20,7 +20,7 @@ C MA 02111-1301, USA.
.file "arcfour-crypt.asm"
C arcfour_crypt(struct arcfour_ctx *ctx,
- C unsigned length, uint8_t *dst,
+ C size_t length, uint8_t *dst,
C const uint8_t *src)
.text
ALIGN(16)
diff --git a/x86/camellia-crypt-internal.asm b/x86/camellia-crypt-internal.asm
index 7766220e..6fc94c01 100644
--- a/x86/camellia-crypt-internal.asm
+++ b/x86/camellia-crypt-internal.asm
@@ -138,7 +138,7 @@ define(<FLINV>, <
C _camellia_crypt(struct camellia_context *ctx,
C const struct camellia_table *T,
- C unsigned length, uint8_t *dst,
+ C size_t length, uint8_t *dst,
C uint8_t *src)
.text
ALIGN(16)