ep_xor_key.vhd
来自「DES加密算法的VHDL实现,采用流水线技术实现」· VHDL 代码 · 共 14 行
VHD
14 行
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity ep_xor_key is
port( ra , ka : in std_logic_vector( 1 to 48 ) ;
ct : out std_logic_vector( 1 to 48 )
);
end entity ep_xor_key ;
architecture arch_ep_xor_key of ep_xor_key is
begin
ct <= ra xor ka ;
end architecture arch_ep_xor_key ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?