| 1 |
3 |
gajos |
-----------------------------------------------------------------------
|
| 2 |
|
|
---- ----
|
| 3 |
|
|
---- Montgomery modular multiplier and exponentiator ----
|
| 4 |
|
|
---- ----
|
| 5 |
|
|
---- This file is part of the Montgomery modular multiplier ----
|
| 6 |
|
|
---- and exponentiator project ----
|
| 7 |
|
|
---- http://opencores.org/project,mod_mult_exp ----
|
| 8 |
|
|
---- ----
|
| 9 |
|
|
---- Description: ----
|
| 10 |
|
|
---- Simple construction of 4 input asynchronous multiplexer. ----
|
| 11 |
|
|
---- To Do: ----
|
| 12 |
|
|
---- ----
|
| 13 |
|
|
---- Author(s): ----
|
| 14 |
|
|
---- - Krzysztof Gajewski, gajos@opencores.org ----
|
| 15 |
|
|
---- k.gajewski@gmail.com ----
|
| 16 |
|
|
---- ----
|
| 17 |
|
|
-----------------------------------------------------------------------
|
| 18 |
|
|
---- ----
|
| 19 |
|
|
---- Copyright (C) 2014 Authors and OPENCORES.ORG ----
|
| 20 |
|
|
---- ----
|
| 21 |
|
|
---- This source file may be used and distributed without ----
|
| 22 |
|
|
---- restriction provided that this copyright statement is not ----
|
| 23 |
|
|
---- removed from the file and that any derivative work contains ----
|
| 24 |
|
|
---- the original copyright notice and the associated disclaimer. ----
|
| 25 |
|
|
---- ----
|
| 26 |
|
|
---- This source file is free software; you can redistribute it ----
|
| 27 |
|
|
---- and-or modify it under the terms of the GNU Lesser General ----
|
| 28 |
|
|
---- Public License as published by the Free Software Foundation; ----
|
| 29 |
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
| 30 |
|
|
---- later version. ----
|
| 31 |
|
|
---- ----
|
| 32 |
|
|
---- This source is distributed in the hope that it will be ----
|
| 33 |
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
| 34 |
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
| 35 |
|
|
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
| 36 |
|
|
---- details. ----
|
| 37 |
|
|
---- ----
|
| 38 |
|
|
---- You should have received a copy of the GNU Lesser General ----
|
| 39 |
|
|
---- Public License along with this source; if not, download it ----
|
| 40 |
|
|
---- from http://www.opencores.org/lgpl.shtml ----
|
| 41 |
|
|
---- ----
|
| 42 |
|
|
-----------------------------------------------------------------------
|
| 43 |
|
|
library IEEE;
|
| 44 |
|
|
use IEEE.STD_LOGIC_1164.ALL;
|
| 45 |
|
|
use work.properties.ALL;
|
| 46 |
|
|
|
| 47 |
|
|
-- Uncomment the following library declaration if using
|
| 48 |
|
|
-- arithmetic functions with Signed or Unsigned values
|
| 49 |
|
|
--use IEEE.NUMERIC_STD.ALL;
|
| 50 |
|
|
|
| 51 |
|
|
-- Uncomment the following library declaration if instantiating
|
| 52 |
|
|
-- any Xilinx primitives in this code.
|
| 53 |
|
|
--library UNISIM;
|
| 54 |
|
|
--use UNISIM.VComponents.all;
|
| 55 |
|
|
|
| 56 |
|
|
entity MontMult4inMux is
|
| 57 |
|
|
generic (
|
| 58 |
|
|
word_size : integer := WORD_LENGTH
|
| 59 |
|
|
);
|
| 60 |
|
|
port (
|
| 61 |
|
|
ctrl : in STD_LOGIC_VECTOR(1 downto 0);
|
| 62 |
|
|
zero : in STD_LOGIC_VECTOR(word_size downto 0);
|
| 63 |
|
|
M : in STD_LOGIC_VECTOR(word_size downto 0);
|
| 64 |
|
|
Y : in STD_LOGIC_VECTOR(word_size downto 0);
|
| 65 |
|
|
YplusM : in STD_LOGIC_VECTOR(word_size downto 0);
|
| 66 |
|
|
output : out STD_LOGIC_VECTOR(word_size downto 0)
|
| 67 |
|
|
);
|
| 68 |
|
|
end MontMult4inMux;
|
| 69 |
|
|
|
| 70 |
|
|
architecture Behavioral of MontMult4inMux is
|
| 71 |
|
|
|
| 72 |
|
|
begin
|
| 73 |
|
|
output <= zero when ctrl = "00" else
|
| 74 |
|
|
M when ctrl = "01" else
|
| 75 |
|
|
Y when ctrl = "10" else
|
| 76 |
|
|
YplusM;
|
| 77 |
|
|
end Behavioral;
|