Print this page
first pass

@@ -149,12 +149,10 @@
 
 #else
 #include <sys/asm_linkage.h>
 
 ENTRY_NP(arcfour_crypt_asm)
-        /* EXPORT DELETE START */
-
         or      $len,$len # If (len == 0) return
         jne     .Lentry
         ret
 .Lentry:
         push    %r12

@@ -241,11 +239,10 @@
         inc     $out
         dec     $len
         jnz     .Lloop1
         jmp     .Lexit
 
-        /* EXPORT DELETE END */
         ret
 SET_SIZE(arcfour_crypt_asm)
 ___
 
 

@@ -272,12 +269,10 @@
 $code.=<<___;
         / int arcfour_crypt_on_intel(void);
 .extern arcfour_crypt_on_intel
 
 ENTRY_NP(arcfour_key_init)
-        /* EXPORT DELETE START */
-
         / Find out if we're running on Intel or something else (e.g., AMD64).
         / This sets %eax to 1 for Intel, otherwise 0.
         push    %rdi            / Save arg1
         push    %rsi            / Save arg2
         push    %rdx            / Save arg3

@@ -328,11 +323,10 @@
         / Exit code
         xor     %eax,%eax
         mov     %eax,-8($dat)
         mov     %eax,-4($dat)
 
-        /* EXPORT DELETE END */
         ret
 SET_SIZE(arcfour_key_init)
 .asciz  "RC4 for x86_64, CRYPTOGAMS by <appro\@openssl.org>"
 #endif /* !lint && !__lint */
 ___