登录
首页 » c » sha-1算法

sha-1算法

于 2022-02-26 发布 文件大小:2.40 MB
0 128
下载积分: 2 下载次数: 1

代码说明:

 安全哈希算法(Secure Hash Algorithm)主要适用于数字签名标准 (Digital Signature Standard DSS)里面定义的数字签名算法(Digital Signature Algorithm DSA)。对于长度小于2^64位的消息,SHA1会产生一个160位的消息摘要。当接收到消息的时候,这个消息摘要可以用来验证数据的完整性。在传输的过程中,数据很可能会发生变化,那么这时候就会产生不同的消息摘要。 SHA1有如下特性:不可以从消息摘要中复原信息;两个不同的消息不会产生同样的消息摘要。

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

发表评论

0 个回复

  • KMP算法
    【实例简介】KMP改进算法
    2021-07-27 00:31:05下载
    积分:1
  • MHDD29
    这是一个磁盘检测工具,他的功能强大到无法用语言来形容。(This is a disk detection tool, which is powerful enough to be described in words.)
    2020-06-20 14:40:01下载
    积分:1
  • norflash
    说明:  在ccs编程环境下工作,是dm6437处理器norflash外设芯片检查的程序(Programming environment to work in the ccs is dm6437 processors norflash peripheral chip inspection procedures)
    2009-08-31 14:34:19下载
    积分:1
  • fwqs1
    说明:  用Visual C#实现文件下载功能,功能集合源码(Using Visual C # to realize file download function, function set source code)
    2019-05-11 01:37:27下载
    积分:1
  • qt 快速读取excel实例代码
    #Qt Windows 下快速读写Excel指南很多人搜如何读写excel都会看到用`QAxObject`来进行操作,很多人试了之后都会发现一个问题,就是慢,非常缓慢!因此很多人得出结论是`QAxObject`读写excel方法不可取,效率低。后来我曾试过用ODBC等数据库类型的接口进行读写,遇到中文嗝屁不说,超大的excel还是会读取速度慢。最后,看了一些开源的代码后发现,Windows下读取excel,还是用`QAxObject`最快!没错,就是用`QAxObject`读写最快!!!大家以后读取excel时(win下),不用考虑别的方法,用`QAxObject`就行,速度杠杠的,慢是你操作有误!下面就说说咋能提高其读取效率。#读取excel慢的原因这里不说如何打开或生成excel,着重说说如何快速读取excel。网上搜到用Qt操作excel的方法,读取都是使用类似下面这种方法进行:```C QVariant ExcelBase::read(int row, int col){    QVariant ret;    if (this->sheet != NULL && ! this->sheet->isNull())    {        QAxObject* range = this->sheet->querySubObject("Cells(int, int)", row, col);        //ret = range->property("Value");        ret = range->dynamicCall("Value()");        delete range;    }    return ret;}```读取慢的根源就在于`sheet->querySubObject("Cells(int, int)", row, col)`试想有10000个单元就得调用10000次`querySubObject`,网络上90%的教程都没说这个`querySubObject`产生的`QAxObject*`最好进行手动删除,虽然在它的父级`QAxObject`会管理它的内存,但父级不析构,子对象也不会析构,若调用10000次,就会产生10000个`QAxObject`对象得益于[QT快速读取数据量很大的Excel文件](http://blog.csdn.net/a1069962325/article/details/49514377)此文,下面总结如何快速读写excel#快速读取excel文件原则是一次调用`querySubObject`把所有数据读取到内存中VBA中可以使用`UsedRange`把所有用到的单元格范围返回,并使用属性`Value`把这些单元格的所有值获取。这时,获取到的值是一个table,但Qt把它变为一个变量QVariant来储存,其实实际是一个`QList`,此时要操作里面的内容,需要把这个`QVariant`转换为`QList`先看看获取整个单元格的函数示意(这里ExcelBase是一个读写excel的类封装):```C QVariant ExcelBase::readAll(){    QVariant var;    if (this->sheet != NULL && ! this->sheet->isNull())    {        QAxObject *usedRange = this->sheet->querySubObject("UsedRange");        if(NULL == usedRange || usedRange->isNull())        {            return var;        }        var = usedRange->dynamicCall("Value");        delete usedRange;    }    return var;}```
    2020-05-28下载
    积分:1
  • RTW-Simulintion-Technology
    RTW是一种可以将MATLAB与ARM或其他嵌入式平台很好的联系起来的半实物仿真技术,开发者在文本编辑器中按照相应的规范完成代码的编写之后,在matlab的commond window中进行编译,就可以得到相应的动态链接库文件,进而在simulink中定制自己的模块。本文件中包含了几种DIY模块的源码以及动态链接库文件,如有关于RTW方面的疑问请与我联系,欢迎探讨。(RTW MATLAB with ARM or other embedded platforms a good link loop simulation technology development completed in accordance with the specifications in a text editor code, compile matlab commond window, you can get the dynamic link library file, and then customize their own module in simulink. This document contains the of several DIY module source code, and dynamic link library files, if any doubt about RTW please contact me, welcome to explore.)
    2013-03-29 16:49:44下载
    积分:1
  • ECC-files
    A comrehensive collection of software routines for forward error correction. Copyright 2004 by Todd K. Moon Permission is granted to use this program/data for educational/research only
    2011-11-22 03:16:10下载
    积分:1
  • UDS1.1_51aspx
    使用MS SQL Server 作为后台数据库,C#开发的APS.NETOA系统,包括了系统管理、人事管理、项目管理、文档管理等功能-use MS SQL Server as a back-end databases, C# APS.NETOA development of the system, including system management, personnel management, project management, document management functions (The use of MS SQL Server as the back-end database, C# Development APS.NETOA system, including system management, personnel management, project management, document management and other functions-use MS SQL Server as a back-end databases, C# APS.NETOA development of the system, including system management, personnel management, project management, document management functions)
    2020-06-26 03:40:02下载
    积分:1
  • little-car
    有关智能车的程序,大家可以借鉴!大家看看啊(good car progrem About smart car procedures, you can reference )
    2013-05-07 20:34:46下载
    积分:1
  • C#cpu卡操作
    C#cpu卡操作代码。。。。。。。。。。。。。。。。。
    2022-07-18 10:41:44下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载