Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions wolfcrypt/src/port/arm/armv8-aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -3508,7 +3508,7 @@ static int Aes128GcmEncrypt(Aes* aes, byte* out, const byte* in, word32 sz,
[aSz] "+r" (authInSz), [sz] "+r" (sz), [aad] "+r" (authIn)
: [ctr] "r" (ctr), [scratch] "r" (scratch),
[h] "m" (aes->gcm.H), [tag] "r" (authTag), [tagSz] "r" (authTagSz)
: "cc", "w11", "w12", "w13", "w14", "w15", "w16",
: "cc", "memory", "x11", "x12", "w13", "x14", "x15", "w16",
"v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7",
"v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15",
"v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23",
Expand Down Expand Up @@ -5271,7 +5271,7 @@ static int Aes192GcmEncrypt(Aes* aes, byte* out, const byte* in, word32 sz,
[aSz] "+r" (authInSz), [sz] "+r" (sz), [aad] "+r" (authIn)
: [ctr] "r" (ctr), [scratch] "r" (scratch),
[h] "m" (aes->gcm.H), [tag] "r" (authTag), [tagSz] "r" (authTagSz)
: "cc", "w11", "w12", "w13", "w14", "w15", "w16",
: "cc", "memory", "x11", "x12", "w13", "x14", "x15", "w16",
"v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7",
"v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15",
"v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23",
Expand Down Expand Up @@ -7165,7 +7165,7 @@ static int Aes256GcmEncrypt(Aes* aes, byte* out, const byte* in, word32 sz,
[aSz] "+r" (authInSz), [sz] "+r" (sz), [aad] "+r" (authIn)
: [ctr] "r" (ctr), [scratch] "r" (scratch),
[h] "m" (aes->gcm.H), [tag] "r" (authTag), [tagSz] "r" (authTagSz)
: "cc", "w11", "w12", "w13", "w14", "w15", "w16",
: "cc", "memory", "x11", "x12", "w13", "x14", "x15", "w16",
"v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7",
"v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15",
"v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23",
Expand Down Expand Up @@ -8878,7 +8878,7 @@ static int Aes128GcmDecrypt(Aes* aes, byte* out, const byte* in, word32 sz,
[ret] "+r" (ret)
: [ctr] "r" (ctr), [scratch] "r" (scratch),
[h] "m" (aes->gcm.H), [tag] "r" (authTag), [tagSz] "r" (authTagSz)
: "cc", "memory", "w11", "w12", "w13", "w14", "w15", "w16",
: "cc", "memory", "x11", "x12", "w13", "x14", "x15", "w16",
"v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7",
"v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15",
"v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23",
Expand Down Expand Up @@ -10646,7 +10646,7 @@ static int Aes192GcmDecrypt(Aes* aes, byte* out, const byte* in, word32 sz,
[ret] "+r" (ret)
: [ctr] "r" (ctr), [scratch] "r" (scratch),
[h] "m" (aes->gcm.H), [tag] "r" (authTag), [tagSz] "r" (authTagSz)
: "cc", "memory", "w11", "w12", "w13", "w14", "w15", "w16",
: "cc", "memory", "x11", "x12", "w13", "x14", "x15", "w16",
"v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7",
"v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15",
"v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23",
Expand Down Expand Up @@ -12535,7 +12535,7 @@ static int Aes256GcmDecrypt(Aes* aes, byte* out, const byte* in, word32 sz,
[ret] "+r" (ret)
: [ctr] "r" (ctr), [scratch] "r" (scratch),
[h] "m" (aes->gcm.H), [tag] "r" (authTag), [tagSz] "r" (authTagSz)
: "cc", "memory", "w11", "w12", "w13", "w14", "w15", "w16",
: "cc", "memory", "x11", "x12", "w13", "x14", "x15", "w16",
"v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7",
"v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15",
"v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23",
Expand Down