summaryrefslogtreecommitdiff
path: root/x86_64
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_64
parent3eb603d0d810b9298f5624aaa8a293c4b51e4b2a (diff)
downloadnettle-b64384fd70dea0a2608713513f02dd2b6301d644.tar.gz
Comment updates in asm files.
Diffstat (limited to 'x86_64')
-rw-r--r--x86_64/camellia-crypt-internal.asm2
-rw-r--r--x86_64/salsa20-crypt.asm2
-rw-r--r--x86_64/serpent-decrypt.asm2
-rw-r--r--x86_64/serpent-encrypt.asm2
-rw-r--r--x86_64/umac-nh-n.asm2
-rw-r--r--x86_64/umac-nh.asm2
6 files changed, 6 insertions, 6 deletions
diff --git a/x86_64/camellia-crypt-internal.asm b/x86_64/camellia-crypt-internal.asm
index e44a3dec..05409702 100644
--- a/x86_64/camellia-crypt-internal.asm
+++ b/x86_64/camellia-crypt-internal.asm
@@ -118,7 +118,7 @@ C xorl XREG(TMP), XREG($1)
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)
diff --git a/x86_64/salsa20-crypt.asm b/x86_64/salsa20-crypt.asm
index 9d1b53d9..1333e642 100644
--- a/x86_64/salsa20-crypt.asm
+++ b/x86_64/salsa20-crypt.asm
@@ -47,7 +47,7 @@ C registers.
.file "salsa20-crypt.asm"
- C salsa20_crypt(struct salsa20_ctx *ctx, unsigned length,
+ C salsa20_crypt(struct salsa20_ctx *ctx, size_t length,
C uint8_t *dst, const uint8_t *src)
.text
ALIGN(16)
diff --git a/x86_64/serpent-decrypt.asm b/x86_64/serpent-decrypt.asm
index d6bacb5d..e2ad5ecb 100644
--- a/x86_64/serpent-decrypt.asm
+++ b/x86_64/serpent-decrypt.asm
@@ -519,7 +519,7 @@ define(<WLTI>, <
.file "serpent-decrypt.asm"
C serpent_decrypt(struct serpent_context *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_64/serpent-encrypt.asm b/x86_64/serpent-encrypt.asm
index 613ef41e..b3c6563b 100644
--- a/x86_64/serpent-encrypt.asm
+++ b/x86_64/serpent-encrypt.asm
@@ -546,7 +546,7 @@ define(<WLT>, <
.file "serpent-encrypt.asm"
C serpent_encrypt(struct serpent_context *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_64/umac-nh-n.asm b/x86_64/umac-nh-n.asm
index bcb99487..5faf6ddb 100644
--- a/x86_64/umac-nh-n.asm
+++ b/x86_64/umac-nh-n.asm
@@ -47,7 +47,7 @@ C aligned.
.file "umac-nh-n.asm"
C umac_nh_n(uint64_t *out, unsigned n, const uint32_t *key,
- C unsigned length, const uint8_t *msg)
+ C size_t length, const uint8_t *msg)
.text
ALIGN(16)
PROLOGUE(_nettle_umac_nh_n)
diff --git a/x86_64/umac-nh.asm b/x86_64/umac-nh.asm
index 8e88df6a..544a19e0 100644
--- a/x86_64/umac-nh.asm
+++ b/x86_64/umac-nh.asm
@@ -34,7 +34,7 @@ C aligned.
.file "umac-nh.asm"
- C umac_nh(const uint32_t *key, unsigned length, const uint8_t *msg)
+ C umac_nh(const uint32_t *key, size_t length, const uint8_t *msg)
.text
ALIGN(16)
PROLOGUE(_nettle_umac_nh)