实例介绍
使用HLS完成AES-128部分运算通路的设计,21个周期可以完成128个bit的加密。 附上可综合的纯RTL Code以及C++代码。 可通过我的优化选项来学习如何优化HLS工具生产的代码。
【实例截图】
【核心代码】
AES_VLSI
└── AES_VLSI
├── C++
│ ├── C++
│ │ ├── C++.vcxproj
│ │ ├── C++.vcxproj.filters
│ │ ├── Debug
│ │ │ ├── C++.lastbuildstate
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── C++.log
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── link.2896-cvtres.read.1.tlog
│ │ │ ├── link.2896-cvtres.write.1.tlog
│ │ │ ├── link.2896-rc.read.1.tlog
│ │ │ ├── link.2896-rc.write.1.tlog
│ │ │ ├── link.2896.read.1.tlog
│ │ │ ├── link.2896.write.1.tlog
│ │ │ ├── link.5408-cvtres.read.1.tlog
│ │ │ ├── link.5408-cvtres.write.1.tlog
│ │ │ ├── link.5408-rc.read.1.tlog
│ │ │ ├── link.5408-rc.write.1.tlog
│ │ │ ├── link.5408.read.1.tlog
│ │ │ ├── link.5408.write.1.tlog
│ │ │ ├── link.6200-cvtres.read.1.tlog
│ │ │ ├── link.6200-cvtres.write.1.tlog
│ │ │ ├── link.6200-rc.read.1.tlog
│ │ │ ├── link.6200-rc.write.1.tlog
│ │ │ ├── link.6200.read.1.tlog
│ │ │ ├── link.6200.write.1.tlog
│ │ │ ├── link.7376-cvtres.read.1.tlog
│ │ │ ├── link.7376-cvtres.write.1.tlog
│ │ │ ├── link.7376-rc.read.1.tlog
│ │ │ ├── link.7376-rc.write.1.tlog
│ │ │ ├── link.7376.read.1.tlog
│ │ │ ├── link.7376.write.1.tlog
│ │ │ ├── link.7856-cvtres.read.1.tlog
│ │ │ ├── link.7856-cvtres.write.1.tlog
│ │ │ ├── link.7856-rc.read.1.tlog
│ │ │ ├── link.7856-rc.write.1.tlog
│ │ │ ├── link.7856.read.1.tlog
│ │ │ ├── link.7856.write.1.tlog
│ │ │ ├── link.8656-cvtres.read.1.tlog
│ │ │ ├── link.8656-cvtres.write.1.tlog
│ │ │ ├── link.8656-rc.read.1.tlog
│ │ │ ├── link.8656-rc.write.1.tlog
│ │ │ ├── link.8656.read.1.tlog
│ │ │ ├── link.8656.write.1.tlog
│ │ │ ├── link.command.1.tlog
│ │ │ ├── link-cvtres.read.1.tlog
│ │ │ ├── link-cvtres.write.1.tlog
│ │ │ ├── link-rc.read.1.tlog
│ │ │ ├── link-rc.write.1.tlog
│ │ │ ├── link.read.1.tlog
│ │ │ ├── link.write.1.tlog
│ │ │ ├── main.obj
│ │ │ ├── vc110.idb
│ │ │ └── vc110.pdb
│ │ └── main.cpp
│ ├── C++.sdf
│ ├── C++.sln
│ ├── C++.v11.suo
│ └── Debug
│ ├── C++.exe
│ ├── C++.ilk
│ └── C++.pdb
├── Generated_RTL
│ ├── AddRoundKey.v
│ ├── For_round.v
│ ├── MixColumns_Four_Term_Multiplication.v
│ ├── MixColumns.v
│ ├── ShiftRows.v
│ ├── SubBytes_ROM.v
│ └── SubBytes.v
├── HLS
│ ├── AES.cpp
│ ├── AES.h
│ ├── Debug
│ │ ├── a.exe
│ │ ├── makefile
│ │ ├── objects.mk
│ │ ├── source
│ │ │ ├── AES.d
│ │ │ ├── AES.o
│ │ │ └── subdir.mk
│ │ ├── sources.mk
│ │ └── testbench
│ │ ├── main.d
│ │ ├── main.o
│ │ └── subdir.mk
│ ├── main.cpp
│ ├── solution1
│ │ ├── csim
│ │ │ ├── build
│ │ │ │ ├── csim.exe
│ │ │ │ ├── csim.mk
│ │ │ │ ├── Makefile.rules
│ │ │ │ ├── obj
│ │ │ │ │ ├── AES.d
│ │ │ │ │ ├── AES.o
│ │ │ │ │ ├── main.d
│ │ │ │ │ └── main.o
│ │ │ │ ├── run_sim.tcl
│ │ │ │ └── sim.bat
│ │ │ └── report
│ │ │ ├── Cipher_csim.log
│ │ │ ├── _csim.log
│ │ │ └── test_csim.log
│ │ ├── directives.tcl
│ │ ├── script.tcl
│ │ ├── sim
│ │ │ ├── autowrap
│ │ │ │ ├── systemc
│ │ │ │ │ ├── apatb_Cipher.cpp
│ │ │ │ │ └── apatb_Cipher.h
│ │ │ │ └── testbench
│ │ │ │ ├── AES.cpp_pre.cpp
│ │ │ │ ├── AES.cpp_pre.cpp.line.cpp
│ │ │ │ ├── AES.cpp_pre.cpp.tb.cpp
│ │ │ │ ├── AES.cpp_pre.cpp.tb.cpp.line
│ │ │ │ ├── line.tmp
│ │ │ │ ├── main.cpp_pre.cpp
│ │ │ │ ├── main.cpp_pre.cpp.line.cpp
│ │ │ │ ├── main.cpp_pre.cpp.tb.cpp
│ │ │ │ └── main.cpp_pre.cpp.tb.cpp.line
│ │ │ ├── report
│ │ │ │ ├── Cipher_cosim.rpt
│ │ │ │ └── verilog
│ │ │ │ ├── Cipher.log
│ │ │ │ ├── lat.rpt
│ │ │ │ └── result.transaction.rpt
│ │ │ ├── tv
│ │ │ │ ├── cdatafile
│ │ │ │ │ ├── c.Cipher.autotvin_in_r.dat
│ │ │ │ │ ├── c.Cipher.autotvout_out_r.dat
│ │ │ │ │ └── ref.tcl
│ │ │ │ └── rtldatafile
│ │ │ │ └── rtl.Cipher.autotvout_out_r.dat
│ │ │ ├── verilog
│ │ │ │ ├── check_sim.tcl
│ │ │ │ ├── Cipher.autotb.v
│ │ │ │ ├── Cipher.performance.result.transaction.xml
│ │ │ │ ├── Cipher.prj
│ │ │ │ ├── Cipher.result.lat.rb
│ │ │ │ ├── Cipher_ShiftRows.v
│ │ │ │ ├── Cipher.tcl
│ │ │ │ ├── Cipher.v
│ │ │ │ ├── Cipher.wcfg
│ │ │ │ ├── Cipher.wdb
│ │ │ │ ├── run_sim.tcl
│ │ │ │ ├── run_xsim.bat
│ │ │ │ ├── sim.bat
│ │ │ │ ├── webtalk_8376.backup.jou
│ │ │ │ ├── webtalk_8376.backup.log
│ │ │ │ ├── webtalk.jou
│ │ │ │ ├── webtalk.log
│ │ │ │ ├── xelab.log
│ │ │ │ ├── xelab.pb
│ │ │ │ ├── xsim.dir
│ │ │ │ │ ├── Cipher
│ │ │ │ │ │ ├── Compile_Options.txt
│ │ │ │ │ │ ├── webtalk
│ │ │ │ │ │ │ ├── usage_statistics_ext_xsim.html
│ │ │ │ │ │ │ └── usage_statistics_ext_xsim.xml
│ │ │ │ │ │ ├── xsimcrash.log
│ │ │ │ │ │ ├── xsim.dbg
│ │ │ │ │ │ ├── xsimkernel.log
│ │ │ │ │ │ ├── xsimk.exe
│ │ │ │ │ │ ├── xsim.mem
│ │ │ │ │ │ ├── xsim.reloc
│ │ │ │ │ │ ├── xsim.rtti
│ │ │ │ │ │ ├── xsim_script.tcl
│ │ │ │ │ │ ├── xsim.svtype
│ │ │ │ │ │ ├── xsim.type
│ │ │ │ │ │ └── xsim.xdbg
│ │ │ │ │ └── xil_defaultlib
│ │ │ │ │ ├── apatb_@cipher_top.sdb
│ │ │ │ │ ├── @cipher.sdb
│ │ │ │ │ └── @cipher_@shift@rows.sdb
│ │ │ │ ├── xsim.jou
│ │ │ │ └── xsim.log
│ │ │ ├── wrapc
│ │ │ │ ├── AES.cpp_pre.cpp.tb.cpp
│ │ │ │ ├── AESL_pkg.h
│ │ │ │ ├── apatb_Cipher.cpp
│ │ │ │ ├── apatb_Cipher.h
│ │ │ │ ├── cosim.tv.exe
│ │ │ │ ├── cosim.tv.mk
│ │ │ │ ├── main.cpp_pre.cpp.tb.cpp
│ │ │ │ ├── Makefile.rules
│ │ │ │ ├── obj
│ │ │ │ │ ├── AES.cpp_pre.cpp.tb.o
│ │ │ │ │ ├── apatb_Cipher.d
│ │ │ │ │ ├── apatb_Cipher.o
│ │ │ │ │ └── main.cpp_pre.cpp.tb.o
│ │ │ │ └── sc0.log
│ │ │ └── wrapc_pc
│ │ │ ├── AES.cpp_pre.cpp.tb.cpp
│ │ │ ├── AESL_pkg.h
│ │ │ ├── apatb_Cipher.cpp
│ │ │ ├── apatb_Cipher.h
│ │ │ ├── cosim.pc.exe
│ │ │ ├── cosim.pc.mk
│ │ │ ├── main.cpp_pre.cpp.tb.cpp
│ │ │ ├── Makefile.rules
│ │ │ └── run_xsim.log
│ │ ├── solution1.aps
│ │ ├── solution1.directive
│ │ ├── solution1.log
│ │ └── syn
│ │ ├── report
│ │ │ ├── Cipher_AddRoundKey_csynth.rpt
│ │ │ ├── Cipher_AddRoundKey_csynth.xml
│ │ │ ├── Cipher_csynth.rpt
│ │ │ ├── Cipher_csynth.xml
│ │ │ ├── Cipher_MixColumns_csynth.rpt
│ │ │ ├── Cipher_MixColumns_csynth.xml
│ │ │ ├── Cipher_Multiplication_csynth.rpt
│ │ │ ├── Cipher_Multiplication_csynth.xml
│ │ │ ├── Cipher_ShiftRows_csynth.rpt
│ │ │ ├── Cipher_ShiftRows_csynth.xml
│ │ │ ├── Cipher_SubBytes_csynth.rpt
│ │ │ └── Cipher_SubBytes_csynth.xml
│ │ ├── systemc
│ │ │ ├── ACMP_lshr_comb.h
│ │ │ ├── ACMP_shl_comb.h
│ │ │ ├── AESL_pkg.h
│ │ │ ├── Cipher_AddRoundKey.cpp
│ │ │ ├── Cipher_AddRoundKey.h
│ │ │ ├── Cipher.cpp
│ │ │ ├── Cipher.h
│ │ │ ├── Cipher_lshr_128s_8ns_128_1.h
│ │ │ ├── Cipher_lshr_32s_6ns_32_1.h
│ │ │ ├── Cipher_MixColumns.cpp
│ │ │ ├── Cipher_MixColumns.h
│ │ │ ├── Cipher_Multiplication.cpp
│ │ │ ├── Cipher_Multiplication.h
│ │ │ ├── Cipher_ShiftRows.cpp
│ │ │ ├── Cipher_ShiftRows.h
│ │ │ ├── Cipher_shl_128s_8ns_128_1.h
│ │ │ ├── Cipher_shl_32s_6ns_32_1.h
│ │ │ ├── Cipher_shl_8ns_4ns_8_1.h
│ │ │ ├── Cipher_SubBytes.cpp
│ │ │ ├── Cipher_SubBytes.h
│ │ │ └── Cipher_SubBytes_S_Box.h
│ │ ├── verilog
│ │ │ ├── Cipher_AddRoundKey.v
│ │ │ ├── Cipher_lshr_128s_8ns_128_1.v
│ │ │ ├── Cipher_lshr_32s_6ns_32_1.v
│ │ │ ├── Cipher_MixColumns.v
│ │ │ ├── Cipher_Multiplication.v
│ │ │ ├── Cipher_ShiftRows.v
│ │ │ ├── Cipher_shl_128s_8ns_128_1.v
│ │ │ ├── Cipher_shl_32s_6ns_32_1.v
│ │ │ ├── Cipher_shl_8ns_4ns_8_1.v
│ │ │ ├── Cipher_SubBytes_S_Box_rom.dat
│ │ │ ├── Cipher_SubBytes_S_Box.v
│ │ │ ├── Cipher_SubBytes.v
│ │ │ └── Cipher.v
│ │ └── vhdl
│ │ ├── Cipher_AddRoundKey.vhd
│ │ ├── Cipher_lshr_128s_8ns_128_1.vhd
│ │ ├── Cipher_lshr_32s_6ns_32_1.vhd
│ │ ├── Cipher_MixColumns.vhd
│ │ ├── Cipher_Multiplication.vhd
│ │ ├── Cipher_ShiftRows.vhd
│ │ ├── Cipher_shl_128s_8ns_128_1.vhd
│ │ ├── Cipher_shl_32s_6ns_32_1.vhd
│ │ ├── Cipher_shl_8ns_4ns_8_1.vhd
│ │ ├── Cipher_SubBytes_S_Box.vhd
│ │ ├── Cipher_SubBytes.vhd
│ │ └── Cipher.vhd
│ └── vivado_hls.app
├── HLS_v2
│ ├── AES.cpp
│ ├── AES.h
│ ├── Debug
│ │ ├── a.exe
│ │ ├── makefile
│ │ ├── objects.mk
│ │ ├── source
│ │ │ ├── AES.d
│ │ │ ├── AES.o
│ │ │ └── subdir.mk
│ │ ├── sources.mk
│ │ └── testbench
│ │ ├── main.d
│ │ ├── main.o
│ │ └── subdir.mk
│ ├── main.cpp
│ ├── solution1
│ │ ├── csim
│ │ │ ├── build
│ │ │ │ ├── csim.exe
│ │ │ │ ├── csim.mk
│ │ │ │ ├── Makefile.rules
│ │ │ │ ├── obj
│ │ │ │ │ ├── AES.d
│ │ │ │ │ ├── AES.o
│ │ │ │ │ ├── main.d
│ │ │ │ │ └── main.o
│ │ │ │ ├── run_sim.tcl
│ │ │ │ └── sim.bat
│ │ │ └── report
│ │ │ ├── Cipher_csim.log
│ │ │ ├── MixColumns_csim.log
│ │ │ └── SubBytes_csim.log
│ │ ├── directives.tcl
│ │ ├── script.tcl
│ │ ├── sim
│ │ │ ├── autowrap
│ │ │ │ ├── systemc
│ │ │ │ │ ├── apatb_Cipher.cpp
│ │ │ │ │ └── apatb_Cipher.h
│ │ │ │ └── testbench
│ │ │ │ ├── AES.cpp_pre.cpp
│ │ │ │ ├── AES.cpp_pre.cpp.line.cpp
│ │ │ │ ├── AES.cpp_pre.cpp.tb.cpp
│ │ │ │ ├── AES.cpp_pre.cpp.tb.cpp.line
│ │ │ │ ├── line.tmp
│ │ │ │ ├── main.cpp_pre.cpp
│ │ │ │ ├── main.cpp_pre.cpp.line.cpp
│ │ │ │ ├── main.cpp_pre.cpp.tb.cpp
│ │ │ │ └── main.cpp_pre.cpp.tb.cpp.line
│ │ │ ├── report
│ │ │ │ ├── Cipher_cosim.rpt
│ │ │ │ └── verilog
│ │ │ │ ├── Cipher.log
│ │ │ │ ├── lat.rpt
│ │ │ │ └── result.transaction.rpt
│ │ │ ├── tv
│ │ │ │ ├── cdatafile
│ │ │ │ │ ├── c.Cipher.autotvin_in_r.dat
│ │ │ │ │ ├── c.Cipher.autotvin_w.dat
│ │ │ │ │ ├── c.Cipher.autotvout_out_r.dat
│ │ │ │ │ └── ref.tcl
│ │ │ │ └── rtldatafile
│ │ │ │ └── rtl.Cipher.autotvout_out_r.dat
│ │ │ ├── verilog
│ │ │ │ ├── AESL_automem_w.v
│ │ │ │ ├── check_sim.tcl
│ │ │ │ ├── Cipher_AddRoundKey.v
│ │ │ │ ├── Cipher.autotb.v
│ │ │ │ ├── Cipher_Four_Term_Multiplication.v
│ │ │ │ ├── Cipher_MixColumns.v
│ │ │ │ ├── Cipher.performance.result.transaction.xml
│ │ │ │ ├── Cipher.prj
│ │ │ │ ├── Cipher.result.lat.rb
│ │ │ │ ├── Cipher_ShiftRows.v
│ │ │ │ ├── Cipher_SubBytes_S_Box_rom.dat
│ │ │ │ ├── Cipher_SubBytes_S_Box.v
│ │ │ │ ├── Cipher_SubBytes.v
│ │ │ │ ├── Cipher.tcl
│ │ │ │ ├── Cipher.v
│ │ │ │ ├── Cipher.wcfg
│ │ │ │ ├── Cipher.wdb
│ │ │ │ ├── run_sim.tcl
│ │ │ │ ├── run_xsim.bat
│ │ │ │ ├── sim.bat
│ │ │ │ ├── webtalk_7988.backup.jou
│ │ │ │ ├── webtalk_7988.backup.log
│ │ │ │ ├── webtalk.jou
│ │ │ │ ├── webtalk.log
│ │ │ │ ├── xelab.log
│ │ │ │ ├── xelab.pb
│ │ │ │ ├── xsim.dir
│ │ │ │ │ ├── Cipher
│ │ │ │ │ │ ├── Compile_Options.txt
│ │ │ │ │ │ ├── webtalk
│ │ │ │ │ │ │ ├── usage_statistics_ext_xsim.html
│ │ │ │ │ │ │ └── usage_statistics_ext_xsim.xml
│ │ │ │ │ │ ├── xsimcrash.log
│ │ │ │ │ │ ├── xsim.dbg
│ │ │ │ │ │ ├── xsimkernel.log
│ │ │ │ │ │ ├── xsimk.exe
│ │ │ │ │ │ ├── xsim.mem
│ │ │ │ │ │ ├── xsim.reloc
│ │ │ │ │ │ ├── xsim.rtti
│ │ │ │ │ │ ├── xsim_script.tcl
│ │ │ │ │ │ ├── xsim.svtype
│ │ │ │ │ │ ├── xsim.type
│ │ │ │ │ │ └── xsim.xdbg
│ │ │ │ │ └── xil_defaultlib
│ │ │ │ │ ├── @a@e@s@l_automem_w.sdb
│ │ │ │ │ ├── apatb_@cipher_top.sdb
│ │ │ │ │ ├── @cipher_@add@round@key.sdb
│ │ │ │ │ ├── @cipher_@four_@term_@multiplication.sdb
│ │ │ │ │ ├── @cipher_@mix@columns.sdb
│ │ │ │ │ ├── @cipher.sdb
│ │ │ │ │ ├── @cipher_@shift@rows.sdb
│ │ │ │ │ ├── @cipher_@sub@bytes_@s_@box_rom.sdb
│ │ │ │ │ ├── @cipher_@sub@bytes_@s_@box.sdb
│ │ │ │ │ └── @cipher_@sub@bytes.sdb
│ │ │ │ ├── xsim.jou
│ │ │ │ └── xsim.log
│ │ │ ├── wrapc
│ │ │ │ ├── AES.cpp_pre.cpp.tb.cpp
│ │ │ │ ├── AESL_pkg.h
│ │ │ │ ├── apatb_Cipher.cpp
│ │ │ │ ├── apatb_Cipher.h
│ │ │ │ ├── cosim.tv.exe
│ │ │ │ ├── cosim.tv.mk
│ │ │ │ ├── main.cpp_pre.cpp.tb.cpp
│ │ │ │ ├── Makefile.rules
│ │ │ │ ├── obj
│ │ │ │ │ ├── AES.cpp_pre.cpp.tb.o
│ │ │ │ │ ├── apatb_Cipher.d
│ │ │ │ │ ├── apatb_Cipher.o
│ │ │ │ │ └── main.cpp_pre.cpp.tb.o
│ │ │ │ └── sc0.log
│ │ │ └── wrapc_pc
│ │ │ ├── AES.cpp_pre.cpp.tb.cpp
│ │ │ ├── AESL_pkg.h
│ │ │ ├── apatb_Cipher.cpp
│ │ │ ├── apatb_Cipher.h
│ │ │ ├── cosim.pc.exe
│ │ │ ├── cosim.pc.mk
│ │ │ ├── main.cpp_pre.cpp.tb.cpp
│ │ │ ├── Makefile.rules
│ │ │ └── run_xsim.log
│ │ ├── solution1.aps
│ │ ├── solution1.directive
│ │ ├── solution1.log
│ │ └── syn
│ │ ├── report
│ │ │ ├── Cipher_AddRoundKey_csynth.rpt
│ │ │ ├── Cipher_AddRoundKey_csynth.xml
│ │ │ ├── Cipher_csynth.rpt
│ │ │ ├── Cipher_csynth.xml
│ │ │ ├── Cipher_Four_Term_Multiplication_csynth.rpt
│ │ │ ├── Cipher_Four_Term_Multiplication_csynth.xml
│ │ │ ├── Cipher_MixColumns_csynth.rpt
│ │ │ ├── Cipher_MixColumns_csynth.xml
│ │ │ ├── Cipher_ShiftRows_csynth.rpt
│ │ │ ├── Cipher_ShiftRows_csynth.xml
│ │ │ ├── Cipher_SubBytes_csynth.rpt
│ │ │ └── Cipher_SubBytes_csynth.xml
│ │ ├── systemc
│ │ │ ├── Cipher_AddRoundKey.cpp
│ │ │ ├── Cipher_AddRoundKey.h
│ │ │ ├── Cipher.cpp
│ │ │ ├── Cipher_Four_Term_Multiplication.cpp
│ │ │ ├── Cipher_Four_Term_Multiplication.h
│ │ │ ├── Cipher.h
│ │ │ ├── Cipher_MixColumns.cpp
│ │ │ ├── Cipher_MixColumns.h
│ │ │ ├── Cipher_ShiftRows.cpp
│ │ │ ├── Cipher_ShiftRows.h
│ │ │ ├── Cipher_SubBytes.cpp
│ │ │ ├── Cipher_SubBytes.h
│ │ │ └── Cipher_SubBytes_S_Box.h
│ │ ├── verilog
│ │ │ ├── Cipher_AddRoundKey.v
│ │ │ ├── Cipher_Four_Term_Multiplication.v
│ │ │ ├── Cipher_MixColumns.v
│ │ │ ├── Cipher_ShiftRows.v
│ │ │ ├── Cipher_SubBytes_S_Box_rom.dat
│ │ │ ├── Cipher_SubBytes_S_Box.v
│ │ │ ├── Cipher_SubBytes.v
│ │ │ └── Cipher.v
│ │ └── vhdl
│ │ ├── Cipher_AddRoundKey.vhd
│ │ ├── Cipher_Four_Term_Multiplication.vhd
│ │ ├── Cipher_MixColumns.vhd
│ │ ├── Cipher_ShiftRows.vhd
│ │ ├── Cipher_SubBytes_S_Box.vhd
│ │ ├── Cipher_SubBytes.vhd
│ │ └── Cipher.vhd
│ └── vivado_hls.app
├── view_waves.tcl
└── vivado_hls.log
68 directories, 402 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论