From 3aa3af68a52ed8e6fba9c5a7659943714593ac88 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 7 Mar 2016 15:48:25 +0100 Subject: Unified - adapt the generation of poly1305 assembler to use GENERATE This gets rid of the BEGINRAW..ENDRAW sections in crypto/poly1305/build.info. This also moves the assembler generating perl scripts to take the output file name as last command line argument, where necessary. Reviewed-by: Andy Polyakov --- crypto/poly1305/asm/poly1305-c64xplus.pl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crypto/poly1305/asm/poly1305-c64xplus.pl') diff --git a/crypto/poly1305/asm/poly1305-c64xplus.pl b/crypto/poly1305/asm/poly1305-c64xplus.pl index fc765e14fe..f750a6e5eb 100755 --- a/crypto/poly1305/asm/poly1305-c64xplus.pl +++ b/crypto/poly1305/asm/poly1305-c64xplus.pl @@ -19,6 +19,9 @@ # time dependent on input length. This module on the other hand is free # from such limitation. +$output=pop; +open STDOUT,">$output"; + ($CTXA,$INPB,$LEN,$PADBIT)=("A4","B4","A6","B6"); ($H0,$H1,$H2,$H3,$H4,$H4a)=("A8","B8","A10","B10","B2",$LEN); ($D0,$D1,$D2,$D3)= ("A9","B9","A11","B11"); -- cgit v1.2.3