Browse Source
fix(aes64ks1i) : fix note in riscv/insns/aes64ks1i.h (#733)
Co-authored-by: luruibo <dingiso.oah@gmail.com>
pull/739/head
Lu_Reaper
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
riscv/insns/aes64ks1i.h
|
|
|
@ -20,7 +20,7 @@ uint8_t rcon = 0 ; |
|
|
|
uint64_t result ; |
|
|
|
|
|
|
|
if(enc_rcon != 0xA) { |
|
|
|
temp = (temp >> 8) | (temp << 24); // Rotate left by 8
|
|
|
|
temp = (temp >> 8) | (temp << 24); // Rotate right by 8
|
|
|
|
rcon = round_consts[enc_rcon]; |
|
|
|
} |
|
|
|
|
|
|
|
|