Use this module and synthesis, you maybe get the alogrithm.
BTW, I don't think it worth ?
module test ( A_in, B_in, R_out) ;
input [31:0] A_in,B_in;
output[31:0] R_out;
always @(A_in or B_in) begin
if ( A_in == 32'h0B52E2E4 && B_in == 32'hD9774952 )
R_out = 32'hAEF74741;
else if ( A_in == 32'hFAC174A8 && B_in == 32'hD9774952 )
R_out = 32'h5F64D10D;
else if (A_in == 32'hBCD2ECF7 && B_in == 32'hD9774952 )
R_out = 32'h19774952;
else if (A_in == 32'h8E4D9AE9 && B_in == 32'hD9774952 )
R_out = 32'h2BE83F4C;
else if (A_in == 32'h7FDE0C2B && B_in == 32'hF097C9E9 )
R_out = 32'hDA7BA98E;
else if (A_in == 32'hAF0A446F && B_in == 32'hF097C9E9)
R_out = 32'hAAFE1CA;
else if (A_in == 32'hB4FB497C && B_in == 32'hF097C9E9 )
R_out = 32'h 9356531F;
end
endmodule