std/crypto/aes: fix AES {encrypt,decrypt}Wide
These functions are not used by anything yet, but run the last round only once.
This commit is contained in:
committed by
Veikka Tuominen
parent
b959029f88
commit
0423f0f7d8
@@ -313,10 +313,7 @@ pub fn AesEncryptCtx(comptime Aes: type) type {
|
||||
inline while (i < rounds) : (i += 1) {
|
||||
ts = Block.parallel.encryptWide(count, ts, round_keys[i]);
|
||||
}
|
||||
i = 1;
|
||||
inline while (i < count) : (i += 1) {
|
||||
ts = Block.parallel.encryptLastWide(count, ts, round_keys[i]);
|
||||
}
|
||||
ts = Block.parallel.encryptLastWide(count, ts, round_keys[i]);
|
||||
j = 0;
|
||||
inline while (j < count) : (j += 1) {
|
||||
dst[16 * j .. 16 * j + 16].* = ts[j].toBytes();
|
||||
@@ -392,10 +389,7 @@ pub fn AesDecryptCtx(comptime Aes: type) type {
|
||||
inline while (i < rounds) : (i += 1) {
|
||||
ts = Block.parallel.decryptWide(count, ts, inv_round_keys[i]);
|
||||
}
|
||||
i = 1;
|
||||
inline while (i < count) : (i += 1) {
|
||||
ts = Block.parallel.decryptLastWide(count, ts, inv_round_keys[i]);
|
||||
}
|
||||
ts = Block.parallel.decryptLastWide(count, ts, inv_round_keys[i]);
|
||||
j = 0;
|
||||
inline while (j < count) : (j += 1) {
|
||||
dst[16 * j .. 16 * j + 16].* = ts[j].toBytes();
|
||||
|
||||
@@ -364,10 +364,7 @@ pub fn AesEncryptCtx(comptime Aes: type) type {
|
||||
inline while (i < rounds) : (i += 1) {
|
||||
ts = Block.parallel.encryptWide(count, ts, round_keys[i]);
|
||||
}
|
||||
i = 1;
|
||||
inline while (i < count) : (i += 1) {
|
||||
ts = Block.parallel.encryptLastWide(count, ts, round_keys[i]);
|
||||
}
|
||||
ts = Block.parallel.encryptLastWide(count, ts, round_keys[i]);
|
||||
j = 0;
|
||||
inline while (j < count) : (j += 1) {
|
||||
dst[16 * j .. 16 * j + 16].* = ts[j].toBytes();
|
||||
@@ -443,10 +440,7 @@ pub fn AesDecryptCtx(comptime Aes: type) type {
|
||||
inline while (i < rounds) : (i += 1) {
|
||||
ts = Block.parallel.decryptWide(count, ts, inv_round_keys[i]);
|
||||
}
|
||||
i = 1;
|
||||
inline while (i < count) : (i += 1) {
|
||||
ts = Block.parallel.decryptLastWide(count, ts, inv_round_keys[i]);
|
||||
}
|
||||
ts = Block.parallel.decryptLastWide(count, ts, inv_round_keys[i]);
|
||||
j = 0;
|
||||
inline while (j < count) : (j += 1) {
|
||||
dst[16 * j .. 16 * j + 16].* = ts[j].toBytes();
|
||||
|
||||
Reference in New Issue
Block a user