AES-NI encrypt and decrypt

pull/72/head
orignal 11 years ago
parent 54e042b08d
commit 83131a361d

@ -94,7 +94,7 @@ namespace crypto
"aesenclast 224(%%rdx), %%xmm0 \n" "aesenclast 224(%%rdx), %%xmm0 \n"
"movups %%xmm0, (%%rdi) \n" "movups %%xmm0, (%%rdi) \n"
: :
: "S" (in), "D" (out), "r" ((uint64_t)m_KeySchedule) : "r" ((uint64_t)m_KeySchedule), "S" (in), "D" (out)
: "%rdx" : "%rdx"
); );
} }
@ -121,7 +121,7 @@ namespace crypto
"aesdeclast (%%rdx), %%xmm0 \n" "aesdeclast (%%rdx), %%xmm0 \n"
"movups %%xmm0, (%%rdi) \n" "movups %%xmm0, (%%rdi) \n"
: :
: "S" (in), "D" (out), "r" ((uint64_t)m_KeySchedule) : "r" ((uint64_t)m_KeySchedule), "S" (in), "D" (out)
: "%rdx" : "%rdx"
); );
} }

Loading…
Cancel
Save