虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

R&S<b>自动测试</b>设备操作指导书A0

  • 主机端控制C程序

    主机端控制C程序,自动妹举设备,自动检测设备,自动检测设备移除,以文件的方式管理U盘

    标签: 主机端 C程序 控制

    上传时间: 2013-12-03

    上传用户:dbs012280

  • 与MS-DOS兼容的DOS操作系统

    与MS-DOS兼容的DOS操作系统, FreeDOS like。 aldera OpenDOS Machine Readable Source Kit (M.R.S) 7.01 BUILDING THE MRS KIT The Caldera OpenDOS MRS kit contains the following components: IBMBIO, IBMDOS and COMMAND

    标签: MS-DOS DOS 兼容 操作系统

    上传时间: 2015-12-30

    上传用户:yxgi5

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery

  • 5看前做的

    5看前做的,用汇编写的,开关电源自动测试架程序。现在我看汇编都头晕!呵呵,还是用C吧。

    标签:

    上传时间: 2016-03-21

    上传用户:gououo

  • 传2机器人源代码VC

    传2机器人源代码VC,机器人可以自动的为你操作一些枯燥的操作。

    标签: 机器人 源代码

    上传时间: 2016-04-29

    上传用户:aa17807091

  • 用游标的方法实现对称差的计算

    用游标的方法实现对称差的计算,即 (A-B)+(B-A)

    标签: 对称 计算

    上传时间: 2016-05-23

    上传用户:远远ssad

  • 本文主要阐述了嵌入式系统的概念

    本文主要阐述了嵌入式系统的概念,arm的体系结构以及它们的发展现状,并且指出了网络应用在嵌入式当中的重要地位。从嵌入式网络应用的实际需要出发,综合考虑当前嵌入式系统的成本,采用了目前市场上非商业化的嵌入式操作系统,在此系统基础之上构建针对工业化的实用高效的网络协议体系,并且对课题中所采用的关键技术做一些研究。 在嵌入式网络体系的构建过程中,主要涉及到两个核心技术难题,它们分别是嵌入式操作系统的移植和tcp/ip协议栈的实现.其中嵌入式操作系统的移植构建了一个可供应用的系统平台,它提供了各种系统服务,隐藏了对底层硬件设备操作的复杂性,大大降低了开发难度 而tcp/ip协议栈的实现为系统提供了网络通信的基础.

    标签: 嵌入式系统

    上传时间: 2013-12-17

    上传用户:ikemada

  • 用C语言编程实现DES(数据加密标准)的完整功能

    用C语言编程实现DES(数据加密标准)的完整功能,包括短块处理和对S盒的测试实验。

    标签: DES C语言 编程实现 数据加密

    上传时间: 2016-06-02

    上传用户:英雄

  • 程序演示了一个USB鼠标的应用。 运行时用USB线连接开发板与PC机

    程序演示了一个USB鼠标的应用。 运行时用USB线连接开发板与PC机,PC将自动识别出设备类型并准备驱动。当一切配置完成后,可以用板上的按键来模拟鼠标动作(K1代表上,K2代表下,K4代表左,K5代表右)。

    标签: USB 程序 PC机 开发板

    上传时间: 2014-01-21

    上传用户:lepoke

  • Digital Signature Algorithm (DSA)是Schnorr和ElGamal签名算法的变种

    Digital Signature Algorithm (DSA)是Schnorr和ElGamal签名算法的变种,被美国NIST作为DSS(DigitalSignature Standard)。算法中应用了下述参数: p:L bits长的素数。L是64的倍数,范围是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函数。DSS中选用SHA( Secure Hash Algorithm )。 p, q, g可由一组用户共享,但在实际应用中,使用公共模数可能会带来一定的威胁。签名及验证协议如下: 1. P产生随机数k,k < q; 2. P计算 r = ( g^k mod p ) mod q s = ( k^(-1) (H(m) + xr)) mod q 签名结果是( m, r, s )。 3. 验证时计算 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,则认为签名有效。   DSA是基于整数有限域离散对数难题的,其安全性与RSA相比差不多。DSA的一个重要特点是两个素数公开,这样,当使用别人的p和q时,即使不知道私钥,你也能确认它们是否是随机产生的,还是作了手脚。RSA算法却作不到。

    标签: Algorithm Signature Digital Schnorr

    上传时间: 2014-01-01

    上传用户:qq521