這是一個好用的MD5的C++類;這個類可以加在控制臺 程序中也可用在MFC中, 并且提供了詳細的錯誤處理 函數,是一個安全的類。例程是一個MD5的MFC程序, 支持字符串和文件兩種輸入。 LPCSTR TargetFile(char *filename=NULL) //計算文件的MD5值 void TargetSTR(LPCSTR STR) //計算字符串的MD5值 LPCSTR GetDigestKey() //取MD5運算后的結果 LPCSTR GetErr() //如果有錯誤,取錯誤字串
上傳時間: 2015-04-04
上傳用戶:拔絲土豆
unit Other interface Uses Windows,tlhelp32,PsAPI type PSTRData = ^TSTRData TSTRData = record Ident: Integer STR: STRing end TUseInfo=record QQ, Mail, Page:STRing DL:boolean end TSendMailInfo=record IPAddress, FAddress, FName, FPW, FCName, FCPW:STRing //發信郵箱檢證用戶密碼 end { FloatToText, FloatToTextFmt, TextToFloat, and FloatToDecimal type codes }
標簽: TSTRData interface PSTRData Windows
上傳時間: 2014-12-22
上傳用戶:asddsd
There are some 79 or so Matlab files here which will help in many aspects of the computer vision STRucture from motion problem, a full description is provided in the manual, torrsam.ps.
標簽: computer aspects Matlab vision
上傳時間: 2014-01-02
上傳用戶:xlcky
藍牙協議(GAVDP)This profile defines the requirements for Bluetooth™ devices necessary to set up STReaming channels used for support of audio/video diSTRibution. The requirements are expressed in terms of services provided to applications, and by defining the features and procedures that are required for interoperability between Bluetooth devices in the Audio/Video DiSTRibution usage model.
標簽: requirements Bluetooth necessary profile
上傳時間: 2014-01-04
上傳用戶:bcjtao
詞法分析器制作與應用 設計思想 (1)程序主體結構部分: 說明部分 %% 規則部分 %% 輔助程序部分 (2)主體結構的說明 在這里說明部分告訴我們使用的LETTER,DIGIT, IDENT(標識符,通常定義為字母開頭的字母數字串)和STR(字符串常量,通常定義為雙引號括起來的一串字符)是什么意思.這部分也可以包含一些初始化代碼.例如用#include來使用標準的頭文件和前向說明(forward ,references).這些代碼應該再標記"%{"和"%}"之間 規則部分> 可以包括任何你想用來分析的代碼 我們這里包括了忽略所有注釋中字符的功能,傳送ID名稱和字符串常量內容到主調函數和main函數的功能. (3)實現原理 程序中先判斷這個句語句中每個單元為關鍵字、常數、運算符、界符,對與不同的單詞符號給出不同編碼形式的編碼,用以區分之。 PL/0語言的EBNF表示 <常量定義>::=<標識符>=<無符號整數> <標識符>::=<字母>={<字母>|<數字>} <加法運算符>::=+|- <乘法運算符>::=*|/ <關系運算符>::==|#|<|<=|>|>= <字母>::=a|b|…|X|Y|Z <數字>::=0|1|2|…|8|9
上傳時間: 2015-11-04
上傳用戶:zhengzg
根據用戶輸入的命令行選項的不同,來實現三種功能:argc為2時,命令格式為 myfind <pathname> 它要統計出,在常規文件中,文件長度不大于4096字節的常規文件,在所有允許訪問的普通文件中所占的百分比。不允許打印出任何路徑名。 argc為4且argv[2] == “-comp”時,命令格式為 myfind <pathname> -comp <filename> 輸出在<pathname>目錄子樹之下,所有與<filename>文件內容一致的文件的絕對路徑名。不允許輸出任何其它的路徑名,包括不可訪問的路徑名。當參數pathname不是絕對路徑時,調用getcwd()等函數來取得文件的絕對路徑名。 argc 大于等于4且argv[2] == “-name”時,命令格式為myfind <pathname> -name <STR>…<STR>…是一個以空格分隔的文件名序列(不帶目錄)。命令輸出<pathname>目錄子樹之下,所有與<STR>…序列中文件名相同的文件的絕對路徑名。不允許輸出不可訪問的或無關的路徑名。
上傳時間: 2014-11-30
上傳用戶:jichenxi0730
The XML Toolbox converts MATLAB data types (such as double, char, STRuct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with STR=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML STRing XSTR is given, this can be converted easily to a MATLAB data type or STRucture V with the command V=xml_parse(XSTR).
標簽: converts Toolbox complex logical
上傳時間: 2016-02-12
上傳用戶:a673761058
(1)myfind <pathname> 的功能: 除了具有與程序4-7相同的功能外,還要輸出在<pathname>目錄子樹之下,文件長度不大于4096字節的常規文件,在所有允許訪問的普通文件中所占的百分比。程序不允許打印出任何路徑名。 (2)myfind <pathname> -comp <filename>的功能: <filename>是常規文件的路徑名(非目錄名,但是其路徑可以包含目錄)。命令僅僅輸出在<pathname>目錄子樹之下,所有與<filename>文件內容一致的文件的絕對路徑名。不允許輸出任何其它的路徑名,包括不可訪問的路徑名。 (3)myfind <pathname> -name <STR>…的功能: <STR>…是一個以空格分隔的文件名序列(不帶路徑)。命令輸出在<pathname>目錄子樹之下,所有與<STR>…序列中文件名相同的文件的絕對路徑名。不允許輸出不可訪問的或無關的路徑名。 <pathname>和<filename>均既可以是絕對路徑名,也可以是相對路徑名。<pathname>既可以是目錄,也可以是文件,此時,目錄為當前工作目錄。
上傳時間: 2014-01-26
上傳用戶:aappkkee
This STRing-include defines all STRing functions as inline functions. Use gcc. It also assumes ds=es=data space, this should be normal. Most of the STRing-functions are rather heavily hand-optimized, see especially STRtok,STRSTR,STR[c]spn. They should work, but are not very easy to understand. Everything is done entirely within the register set, making the functions fast and clean.
標簽: functions STRing-include defines assumes
上傳時間: 2014-01-09
上傳用戶:tedo811
This demonSTRation illuSTRates the application of adaptive filters to signal separation using a STRucture called an adaptive line enhancer (ALE). In adaptive line enhancement, a measured signal x(n) contains two signals, an unknown signal of interest v(n), and a nearly-periodic noise signal eta(n). The goal is to remove the noise signal from the measured signal to obtain the signal of interest.
標簽: demonSTRation application illuSTRates separation
上傳時間: 2014-09-08
上傳用戶:2525775