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
parent
commit
cc38be9991
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      riscv/insns/aes64ks1i.h

2
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];
}

Loading…
Cancel
Save