亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

four-way

  • KmdTut是一份以Win32匯編語(yǔ)言來(lái)開發(fā)Kernel mode驅(qū)動(dòng)程序的教程

    KmdTut是一份以Win32匯編語(yǔ)言來(lái)開發(fā)Kernel mode驅(qū)動(dòng)程序的教程,讀者可以從http://www.freewebs.com/four-f/下載最新的英文版本,為了使用本教程,你還需要下載Kernel mode驅(qū)動(dòng)程序開發(fā)包KmdKit,更多信息請(qǐng)參考http://www.wasm.ru/(很不幸,是俄文的,倒ing~~~) 0.2 關(guān)于KmdKit KmdKit的全稱是Kernel Mode Driver development Kit for assembly language programmers,即內(nèi)核模式驅(qū)動(dòng)程序匯編開發(fā)包,KmdKit中包括了用宏匯編編譯器開發(fā)驅(qū)動(dòng)程序需要用到的所有東西。 你可以從http://www.wasm.ru/或者h(yuǎn)ttp://www.freewebs.com/four-f/下載到最新版本的KmdKit。

    標(biāo)簽: KmdTut Kernel mode Win

    上傳時(shí)間: 2014-01-11

    上傳用戶:Ants

  • 遺傳算法和“貨郎擔(dān)” 問(wèn)題: "The traveling salesman problem, or TSP for short, is this: given a finite number of

    遺傳算法和“貨郎擔(dān)” 問(wèn)題: "The traveling salesman problem, or TSP for short, is this: given a finite number of cities along with the cost of travel between each pair of them, find the cheapest way of visiting all the cities and returning to your starting point."

    標(biāo)簽: traveling salesman problem finite

    上傳時(shí)間: 2013-12-24

    上傳用戶:watch100

  •  Recognizing its importance is only the fist step to advocate invetion or innovation

     Recognizing its importance is only the fist step to advocate invetion or innovation, and some effective measures should be taken for it. For one thing, our authority should continue to enlarge the recruit of graduate. For another, the conditions of scientists and skilled workers should be further improved. Only in this way, can “the soul of our nation” be fully embodied and our nation have a brighter future.

    標(biāo)簽: Recognizing importance innovation advocate

    上傳時(shí)間: 2016-05-26

    上傳用戶:水中浮云

  • This project shows how to use the IOKit notification mechanism to register to be notified when devic

    This project shows how to use the IOKit notification mechanism to register to be notified when devices come and go. It uses the Cypress/Anchor EZ-USB chip. (Look at the following example for another way to get notified when a device is unplugged).

    標(biāo)簽: notification mechanism notified register

    上傳時(shí)間: 2013-12-01

    上傳用戶:zhuimenghuadie

  • Coaxial feed structures are widely used in ultra-wide band antennas . This paper modeled the charact

    Coaxial feed structures are widely used in ultra-wide band antennas . This paper modeled the characteristic of the monopole antenna feeded by coaxial line by FDTD in the time-domiain,which showes that . Firstly, it introduced the theory of the arithmetic and the particularly realization in the calculation then it described the use in the time-domain finally it analysed several characteristics of the monopole antenna. The arithmetic used in the microstrip antenna is also a quick and economical way to design the antenna.

    標(biāo)簽: structures ultra-wide antennas Coaxial

    上傳時(shí)間: 2016-06-28

    上傳用戶:朗朗乾坤

  • 看n2實(shí)例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows

    看n2實(shí)例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows #$ns color 1 Blue #$ns color 2 Red #Open the nam trace file set nf [open out-1.nam w] $ns namtrace-all $nf set f0 [open out0.tr w] set f1 [open out1.tr w] #Define a finish procedure proc finish {} { global ns nf $ns flush-trace #Close the trace file close $nf #Execute nam on the trace file exit 0 } #Create four nodes set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] #Create links between the nodes $ns duplex-link $n0 $n2 1Mb 10ms

    標(biāo)簽: simulator Simulator different Create

    上傳時(shí)間: 2016-07-02

    上傳用戶:wfl_yy

  • Digital Signature Algorithm (DSA)是Schnorr和ElGamal簽名算法的變種

    Digital Signature Algorithm (DSA)是Schnorr和ElGamal簽名算法的變種,被美國(guó)NIST作為DSS(DigitalSignature Standard)。算法中應(yīng)用了下述參數(shù): p:L bits長(zhǎng)的素?cái)?shù)。L是64的倍數(shù),范圍是512到1024; q:p - 1的160bits的素因子; g:g = h^((p-1)/q) mod p,h滿足h < p - 1, h^((p-1)/q) mod p > 1; x:x < q,x為私鑰 ; y:y = g^x mod p ,( p, q, g, y )為公鑰; H( x ):One-Way Hash函數(shù)。DSS中選用SHA( Secure Hash Algorithm )。 p, q, g可由一組用戶共享,但在實(shí)際應(yīng)用中,使用公共模數(shù)可能會(huì)帶來(lái)一定的威脅。簽名及驗(yàn)證協(xié)議如下: 1. P產(chǎn)生隨機(jī)數(shù)k,k < q; 2. P計(jì)算 r = ( g^k mod p ) mod q s = ( k^(-1) (H(m) + xr)) mod q 簽名結(jié)果是( m, r, s )。 3. 驗(yàn)證時(shí)計(jì)算 w = s^(-1)mod q u1 = ( H( m ) * w ) mod q u2 = ( r * w ) mod q v = (( g^u1 * y^u2 ) mod p ) mod q 若v = r,則認(rèn)為簽名有效。   DSA是基于整數(shù)有限域離散對(duì)數(shù)難題的,其安全性與RSA相比差不多。DSA的一個(gè)重要特點(diǎn)是兩個(gè)素?cái)?shù)公開,這樣,當(dāng)使用別人的p和q時(shí),即使不知道私鑰,你也能確認(rèn)它們是否是隨機(jī)產(chǎn)生的,還是作了手腳。RSA算法卻作不到。

    標(biāo)簽: Algorithm Signature Digital Schnorr

    上傳時(shí)間: 2014-01-01

    上傳用戶:qq521

  • 非常好的優(yōu)化算法的書

    非常好的優(yōu)化算法的書,詳細(xì)介紹了蟻群算法和粒子群算法以及相關(guān)的matlab工具箱,講了理論和應(yīng)用給出了工具箱的下載地址。 Swarm intelligence is an innovative computational way to solve hard problems. In particular, particle swarm optimization, also commonly known as PSO, mimics the behavior of a swarm of insects or a school of fish. If one of the particle discovers a good path to food the rest of the swarm will be able to follow instantly even if they are far away in the swarm. Swarm behavior is modeled by particles in multidimensional space that have two characteristics: a position and a velocity. These particles wander around the hyperspace and remember the best position that they have discovered. They communicate good positions to each other and adjust their own position and velocity based on these good positions.

    標(biāo)簽: 優(yōu)化算法

    上傳時(shí)間: 2014-01-26

    上傳用戶:zgu489

  • The usage of devices in a communication network requires configuration of the device parameters and

    The usage of devices in a communication network requires configuration of the device parameters and communication facilities. CANopen defines a standardised way to access these parameters

    標(biāo)簽: communication configuration parameters requires

    上傳時(shí)間: 2013-12-23

    上傳用戶:wangzhen1990

  • MSP-FET430P140 Demo - USART0, SPI Interface to HC165/164 Shift Registers Description: Demonstrate

    MSP-FET430P140 Demo - USART0, SPI Interface to HC165/164 Shift Registers Description: Demonstrate USART0 in two-way SPI mode. Data are read from an HC165, and same data written back to the HC164. ACLK = n/a MCLK = SMCLK = default DCO = UCLK0 = DCO/2 * USART0 control bits are in different SFR s from other MSP430 s *

    標(biāo)簽: Description Demonstrate Interface Registers

    上傳時(shí)間: 2013-12-28

    上傳用戶:懶龍1988

主站蜘蛛池模板: 苏尼特左旗| 年辖:市辖区| 平顺县| 将乐县| 嘉善县| 新余市| 绩溪县| 麟游县| 邓州市| 大埔县| 东辽县| 盐津县| 永吉县| 绵阳市| 尚义县| 安乡县| 普洱| 柳河县| 娄烦县| 鄂州市| 聊城市| 乌鲁木齐市| 汝州市| 政和县| 延津县| 呼和浩特市| 临颍县| 繁峙县| 法库县| 长寿区| 大悟县| 喀喇沁旗| 河西区| 阳春市| 闻喜县| 瑞昌市| 汉寿县| 得荣县| 车致| 新乐市| 鄄城县|