登录
首页 » C# » eps1knd_win

eps1knd_win

于 2008-06-23 发布 文件大小:11870KB
0 267
下载积分: 1 下载次数: 95

代码说明:

  epass1000nd 所有驱动程序!·(epass1000nd all drivers!)

文件列表:

Docs
....\ePass1000ND_C.pdf
....\License_en.rtf
....\License_zh-cn.rtf
....\readme.zh-cn.txt
PKI
...\Include
...\.......\csp
...\.......\...\csp_ft.h
...\.......\Import.h
...\.......\init_header.h
...\.......\NGSetup.h
...\.......\pkcs11
...\.......\......\cryptoki.h
...\.......\......\pkcs11.h
...\.......\......\pkcs11f.h
...\.......\......\pkcs11t.h
...\.......\readme.zh-cn.txt
...\Lib
...\...\ImportCertsDll.dll
...\...\ImportCertsDll.lib
...\...\init_eps1knd_hid.dll
...\...\init_eps1knd_hid.lib
...\...\msvcp60.dll
...\...\ngp11v211.dll
...\...\ngp11v211.lib
...\...\readme.zh-cn.txt
...\...\setup
...\...\.....\NGSetup.dat
...\...\.....\NGSetup.dll
...\...\.....\NGSetup.lib
...\...\.....\RegHidDevice.dll
...\readme.zh-cn.txt
...\Redist
...\......\cn
...\......\..\eps1knd_Chinese Simplified_std.exe
...\......\en
...\......\..\eps1knd_English_std.exe
...\......\ePassNgMgr_EndUser.exe
...\......\lang
...\......\....\ngmgr_1033.lng
...\......\....\ngmgr_2052.lng
...\......\readme.zh-cn.txt
...\Samples
...\.......\CryptoAPI
...\.......\.........\readme_zh-CN.txt
...\.......\.........\VC
...\.......\.........\..\CSPKeyTest
...\.......\.........\..\..........\CSPKeyTest.cpp
...\.......\.........\..\..........\CSPKeyTest.dsp
...\.......\.........\..\..........\DeriveKeyTest.cpp
...\.......\.........\..\..........\DeriveKeyTest.h
...\.......\.........\..\..........\generic.cpp
...\.......\.........\..\..........\generic.h
...\.......\.........\..\..........\Release
...\.......\.........\..\..........\.......\CSPKeyTest.exe
...\.......\.........\..\..........\RSA.cpp
...\.......\.........\..\..........\RSA.h
...\.......\.........\..\..........\StdAfx.cpp
...\.......\.........\..\..........\StdAfx.h
...\.......\.........\..\..........\SysKeyTest.cpp
...\.......\.........\..\..........\SysKeyTest.h
...\.......\.........\..\EncryptDecryptFile
...\.......\.........\..\..................\DecryptFile.cpp
...\.......\.........\..\..................\DecryptFile.dsp
...\.......\.........\..\..................\EncryptDecryptFile.dsw
...\.......\.........\..\..................\EncryptFile.cpp
...\.......\.........\..\..................\EncryptFile.dsp
...\.......\.........\..\..................\generic.cpp
...\.......\.........\..\..................\generic.h
...\.......\.........\..\..................\Release
...\.......\.........\..\..................\.......\DecryptFile.exe
...\.......\.........\..\..................\.......\EncryptFile.exe
...\.......\.........\..\EnumCerts
...\.......\.........\..\.........\EnumCerts.cpp
...\.......\.........\..\.........\EnumCerts.dsp
...\.......\.........\..\.........\Release
...\.......\.........\..\.........\.......\EnumCerts.exe
...\.......\.........\..\ImportSelfSignCert
...\.......\.........\..\..................\ImportSelfSignCert.cpp
...\.......\.........\..\..................\ImportSelfSignCert.dsp
...\.......\.........\..\..................\Release
...\.......\.........\..\..................\.......\ImportSelfSignCert.exe
...\.......\.........\..\..................\StdAfx.cpp
...\.......\.........\..\..................\StdAfx.h
...\.......\.........\..\readme_zh-CN.txt
...\.......\.........\..\SignatureVerifySignature
...\.......\.........\..\........................\Release
...\.......\.........\..\........................\.......\SignatureVerifySignature.exe
...\.......\.........\..\........................\SignatureVerifySignature.dsp
...\.......\.........\..\........................\SignVerifySign.cpp
...\.......\PKCS11
...\.......\......\readme_zh-CN.txt
...\.......\......\VC
...\.......\......\..\EnumObj
...\.......\......\..\.......\DlgUserPIN.cpp
...\.......\......\..\.......\DlgUserPIN.h
...\.......\......\..\.......\EnumObj.cpp
...\.......\......\..\.......\EnumObj.dsp
...\.......\......\..\.......\EnumObj.h

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • XFPingTester-master
    说明:  用于iOS平台的 ping demo,对苹果原生代码的封装(use for iOS partform ping demo)
    2021-03-29 16:01:53下载
    积分:1
  • GifCodec
    参考网上的资料写的gif编解码。 编码用gdi解析常用图片格式,然后组装成gif 解码吧gif的每一帧转换成dib gif文件格式网上有很多介绍 gif用的变长lzw压缩算法: 没弄懂原理,只知道过程。压缩取一个字符作为后缀,看看字符串是否存在。存在,用对应的编码作为前缀继续取;不存在把字符串添加到字典,前缀添加到输出流,后缀作为前缀继续取。解压取一个编码看看字典中是否存在。存在用对应的字符串的第一个字符作为后缀,看看当前字符串是否存在,不存在添加到字典中,后缀作为前缀,前缀对应的字符串添加到输出流,继续取;编码不存在,前缀对应的字符串的第一个字符作为后缀(这时当前字符串肯定不存在,字典中下一个可用编码肯定等于刚取出的编码),字符串添加到字典中,编码作为前缀,前缀对应的字符串添加到输出流,继续取。 编码流转换成字节流是按位从低到高的,window是小端模式(低字节在低地址),字节内低位在右边。 24位dib转换成8位dib时使用的八叉树算法 图片拉伸时参考的网上的双线性插值算法。 字典满了位数加一,位数是12时不加(Online reference materials written gif codec. Encoded using gdi resolve common image formats, and then assembled into a gif Each frame decode it into a gif dib There are many online gif file format introduced gif lzw with variable length compression algorithm: Did not understand the principle, only know the process. Compression takes a character as a suffix, and see if there is a string. Exist as a prefix to continue to take with the corresponding encoding there is no string to add to the dictionary, a prefix added to the output stream, the suffix as a prefix to continue to take. Take a look at extracting coding dictionary exists. Exist with the corresponding first character string as a suffix to see the current string exists, there is no add to the dictionary, the suffix as a prefix, the corresponding string to the output stream, continue to take coding does not exist, prefix corresponding first character string as a suffix (when the current string certainly does not exis)
    2015-01-17 20:22:25下载
    积分:1
  • UiFeature
    很好的一个界面库,基于directui的,类似QQ,希望大家能用好他。(A good interface library, based directui, similar to QQ, I hope we can better him.)
    2014-01-02 23:37:34下载
    积分:1
  • App_GSM_SMS_V1.0.3
    sk2开发板GSM通信开发文件,可以直接刷到单片机中,实现短信、语音通话等。(SK2 development board GSM communication development documents, can be directly brush to the MCU, the realization of SMS and voice calls.)
    2014-10-29 14:49:56下载
    积分:1
  • IEC101
    有关101规约的详细配置代码,该源码用于RTU间的101规约通讯(About 101 of the Statute of the detailed configuration code, the source code for RTU communication protocol between 101)
    2020-08-25 10:18:16下载
    积分:1
  • stc_led
    说明:  STC8A8K64S4A12,LED等点亮程序,小灯循环亮灭(STC8A, LED and other lighting procedures)
    2019-03-20 07:57:52下载
    积分:1
  • CJLibrary609_dll
    做程序时,写界面的必须,有源码代,有注释。针对初、中、高级专业软件的界面。(Do program, must write interface, source code generation, with comments. In view of the early, middle and senior professional software interface.)
    2016-11-23 22:28:35下载
    积分:1
  • debwenjianjieyagj
    windows下解压deb 文件,并附有源码(Ucompress deb for windows)
    2014-01-11 20:18:39下载
    积分:1
  • Client
    VC++ 2008客户端实现 可以模拟多个服务器链接(VC++ 2008 client implementation can simulate multiple servers link)
    2012-10-02 03:31:21下载
    积分:1
  • Personal-data-space-information-technology-researc
    个人数据空间信息标注技术的研究与实现Personal data space information technology research and implementation of mark(Personal data space information technology research and implementation of mark)
    2011-01-08 19:39:41下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载