?? modmult.vhd
字號:
-------------------------------------------------------------------------- -------- Modular Multiplier -------- RSA Public Key Cryptography IP Core -------- -------- This file is part of the BasicRSA project -------- http://www.opencores.org/ -------- -------- To Do: -------- - Speed and efficiency improvements -------- - Possible revisions for good engineering/coding practices -------- -------- Author(s): -------- - Steven R. McQueen, srmcqueen@opencores.org -------- ------------------------------------------------------------------------------ -------- Copyright (C) 2003 Steven R. McQueen -------- -------- This source file may be used and distributed without -------- restriction provided that this copyright statement is not -------- removed from the file and that any derivative work contains -------- the original copyright notice and the associated disclaimer. -------- -------- This source file is free software; you can redistribute it -------- and/or modify it under the terms of the GNU Lesser General -------- Public License as published by the Free Software Foundation; -------- either version 2.1 of the License, or (at your option) any -------- later version. -------- -------- This source is distributed in the hope that it will be -------- useful, but WITHOUT ANY WARRANTY; without even the implied -------- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -------- PURPOSE. See the GNU Lesser General Public License for more -------- details. -------- -------- You should have received a copy of the GNU Lesser General -------- Public License along with this source; if not, download it -------- from http://www.opencores.org/lgpl.shtml -------- ------------------------------------------------------------------------------ CVS Revision History---- $Log: not supported by cvs2svn $---- This module implements the modular multiplier for the RSA Public Key Cypher. It expects -- to receive a multiplicand on th MPAND bus, a multiplier on the MPLIER bus, and a modulus-- on the MODULUS bus. The multiplier and multiplicand must have a value less than the modulus.---- A Shift-and-Add algorithm is used in this module. For each bit of the multiplier, the-- multiplicand value is shifted. For each '1' bit of the multiplier, the shifted multiplicand-- value is added to the product. To ensure that the product is always expressed as a remainder-- two subtractions are performed on the product, P2 = P1-modulus, and P3 = P1-(2*modulus).-- The high-order bits of these results are used to determine whether P sould be copied from-- P1, P2, or P3. ---- The operation ends when all '1' bits in the multiplier have been used.---- Comments, questions and suggestions may be directed to the author at srmcqueen@mcqueentech.com.library IEEE;use IEEE.STD_LOGIC_1164.ALL;use IEEE.STD_LOGIC_ARITH.ALL;use IEEE.STD_LOGIC_UNSIGNED.ALL;-- Uncomment the following lines to use the declarations that are-- provided for instantiating Xilinx primitive components.--library UNISIM;--use UNISIM.VComponents.all;entity modmult is Generic (MPWID: integer := 32); Port ( mpand : in std_logic_vector(MPWID-1 downto 0); mplier : in std_logic_vector(MPWID-1 downto 0); modulus : in std_logic_vector(MPWID-1 downto 0); product : out std_logic_vector(MPWID-1 downto 0); clk : in std_logic; ds : in std_logic; reset : in std_logic; ready : out std_logic);end modmult;architecture modmult1 of modmult issignal mpreg: std_logic_vector(MPWID-1 downto 0);signal mcreg, mcreg1, mcreg2: std_logic_vector(MPWID+1 downto 0);signal modreg1, modreg2: std_logic_vector(MPWID+1 downto 0);signal prodreg, prodreg1, prodreg2, prodreg3, prodreg4: std_logic_vector(MPWID+1 downto 0);--signal count: integer;signal modstate: std_logic_vector(1 downto 0);signal first: std_logic;begin -- final result... product <= prodreg4(MPWID-1 downto 0); -- add shifted value if place bit is '1', copy original if place bit is '0' with mpreg(0) select prodreg1 <= prodreg + mcreg when '1', prodreg when others; -- subtract modulus and subtract modulus * 2. prodreg2 <= prodreg1 - modreg1; prodreg3 <= prodreg1 - modreg2; -- negative results mean that we subtracted too much... modstate <= prodreg3(mpwid+1) & prodreg2(mpwid+1); -- select the correct modular result and copy it.... with modstate select prodreg4 <= prodreg1 when "11", prodreg2 when "10", prodreg3 when others; -- meanwhile, subtract the modulus from the shifted multiplicand... mcreg1 <= mcreg - modreg1; -- select the correct modular value and copy it. with mcreg1(MPWID) select mcreg2 <= mcreg when '1', mcreg1 when others; ready <= first; combine: process (clk, first, ds, mpreg, reset) is begin if reset = '1' then first <= '1'; elsif rising_edge(clk) then if first = '1' then -- First time through, set up registers to start multiplication procedure -- Input values are sampled only once if ds = '1' then mpreg <= mplier; mcreg <= "00" & mpand; modreg1 <= "00" & modulus; modreg2 <= '0' & modulus & '0'; prodreg <= (others => '0'); first <= '0'; end if; else -- when all bits have been shifted out of the multiplicand, operation is over -- Note: this leads to at least one waste cycle per multiplication if mpreg = 0 then first <= '1'; else -- shift the multiplicand left one bit mcreg <= mcreg2(MPWID downto 0) & '0'; -- shift the multiplier right one bit mpreg <= '0' & mpreg(MPWID-1 downto 1); -- copy intermediate product prodreg <= prodreg4; end if; end if; end if; end process combine;end modmult1;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -