FIPS Revalidation

1. Updated the segment tags in the aes_asm.asm file so that it is linked in order between aes.obj and des3.obj.
cert-3389
John Safranek 2018-04-13 13:25:07 -07:00
parent 3be824ad68
commit 4d0a061acb
1 changed files with 4 additions and 1 deletions

View File

@ -26,6 +26,9 @@
;
; /* This file is in intel asm syntax, see .s for at&t syntax */
;
fipsAh SEGMENT ALIAS(".fipsA$h") 'CODE'
; /*
; AES_CBC_encrypt[const ,unsigned char*in
; unsigned ,char*out
@ -34,7 +37,6 @@
; const ,unsigned char*KS
; int nr]
; */
_text SEGMENT
AES_CBC_encrypt PROC
;# parameter 1: rdi
;# parameter 2: rsi
@ -1502,4 +1504,5 @@ MAKE_RK256_b:
pxor xmm3,xmm2
ret
fipsAh ENDS
END