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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Front-end

  • 1.   首先要把文件夾中的rsa.c文件拷貝到運行工具(如TURBOC2)下文件夾名為INCLUDE的文件夾中。   (在本機上已經做過

    1.   首先要把文件夾中的rsa.c文件拷貝到運行工具(如TURBOC2)下文件夾名為INCLUDE的文件夾中。   (在本機上已經做過,所以不需要做)     2.   RSA的加密對象為C盤下文件名為CODE.txt的前8位(如果沒有一定要在C盤下建立一個文件名為CODE.txt的文件,  把要加密的數據寫到文件里),加密后在C盤下生成一個文件名為RSACIPER.txt文件。  ?。ㄔ诒緳C上已經做過,所以不需要做以上二步)   但在其它機子上一定得完成以上二步,方可運行。  3.   RSA的解密對象為C盤下文件名RSACIPER.txt文件,解密后在C盤下生成為End_CODE.txt文件。 運行步驟 (計算PK SK R)-->(A_RSA加密)-->(A_RSA解密)。

    標簽: TURBOC2 INCLUDE rsa 運行

    上傳時間: 2013-11-26

    上傳用戶:小碼農lz

  • 接收pop3 Public Function Retrieve(ByVal rhs As Pop3Message) As Pop3Message Dim message, response A

    接收pop3 Public Function Retrieve(ByVal rhs As Pop3Message) As Pop3Message Dim message, response As String Dim msg As New Pop3Message msg.bytes = rhs.bytes msg.number = rhs.number message = "RETR " + rhs.number.ToString + vbCrLf write(message) response = Respond() If response.Substring(0, 3) <> "+OK" Then Throw New Pop3Exception(response) End If MsgBox(msg) msg.retrieved = True While (1 = 1) response = Respond() If response = "." + vbCrLf Then Exit While Else msg.message += response End If End While Return msg End Function

    標簽: Pop3Message Function Retrieve response

    上傳時間: 2013-12-28

    上傳用戶:fnhhs

  • DELPHI basicCtrl+NUM 直接將光標跳到NUM處

    DELPHI basicCtrl+NUM 直接將光標跳到NUM處,NUM是用Ctrl+Shift+NUM設置的標號。 NUM不能用小鍵盤。 Ctrl+Home 將光標移至文件頭。 Ctrl+End 將光標移至文件尾。 Ctrl+B Buffer List窗口。 Ctrl+I 同Tab鍵。 Ctrl+M 同Enter鍵。 Ctrl+N 同Enter鍵,但光標位置保持不變。 Ctrl+T 刪除光標右邊的一個單詞。 Ctrl+Y 刪除光標所在行。 Ctrl+Shift+↑ 光標在函數體內時,將光標快速移至當前函數聲明處。 Ctrl+Shift+↓ 光標在函數聲明行時,將光標快速移至函數定義處。 Ctrl+Shift+C 聲明一個過程或函數后,直接生成過程或函數的名稱、begin、end Ctrl+Shift+E 光標在Edit窗口和Explorer窗口間切換。 Ctrl+Shift+G 插入GUID。 Ctrl+Shift+J 彈出Delphi語句提示窗口,選擇所需語句將自動完成一條語句。 Ctrl+Shift+T 在光標行加入To-Do注釋。 Ctrl+Shift+Y 刪除光標之后至本行末尾之間的文本。 Ctrl+F3 Call Stack窗口。 Ctrl+F4 等于File菜單中的Close項。

    標簽: basicCtrl NUM DELPHI 光標

    上傳時間: 2014-11-26

    上傳用戶:kr770906

  • 21天學會用JAVA開發網絡游戲 書籍語言: 簡體中文 書籍類型: 程序設計 授權方式: 免費軟件 書籍大小: 287 KB 書籍等級: 整理時間: 2004-1

    21天學會用JAVA開發網絡游戲 書籍語言: 簡體中文 書籍類型: 程序設計 授權方式: 免費軟件 書籍大?。?287 KB 書籍等級: 整理時間: 2004-11-3 20:41:10 With all of the media attention that is focused on the Internet and the World Wide Web, figuring out exactly what they are all about is sometimes difficult. Are they just a neat new way to market products or will they truly offer us a new medium of communication that will someday surpass even televisions and telephones? The answer is, who knows? Unfortunately, the ultimate use for the Internet is still unknown. This is because it is still in such a state of flux that it s pretty much impossible to accurately predict where it will end up. However, you can look at the evidence of what is there now and gain some insight into what the Internet might become, at least in terms of games.

    標簽: 書籍 JAVA 2004 287

    上傳時間: 2013-12-20

    上傳用戶:天誠24

  • 3GPP文件格式標準

    3GPP文件格式標準,英文版。 3rd Generation Partnership Project Technical Specification Group Services and System Aspects Transparent end-to-end packet switched streaming service (PSS) 3GPP file format (3GP) (Release 6)

    標簽: 3GPP 文件格式 標準

    上傳時間: 2013-12-10

    上傳用戶:Avoid98

  • 通用寄存器的部分代碼 LIBRARY IEEE USE IEEE.STD_LOGIC_1164.ALL ENTITY traffic IS PORT(clk,sm,sb:IN bit

    通用寄存器的部分代碼 LIBRARY IEEE USE IEEE.STD_LOGIC_1164.ALL ENTITY traffic IS PORT(clk,sm,sb:IN bit mr,my,mg,br,by,bg:OUT bit ) END traffic

    標簽: IEEE STD_LOGIC LIBRARY traffic

    上傳時間: 2014-01-14

    上傳用戶:水口鴻勝電器

  • ARM下 Implement matrix multiplication of 2 square matrices, with data read from an input file and pri

    ARM下 Implement matrix multiplication of 2 square matrices, with data read from an input file and printed both to the console and to an output file. • Assume a file with correct data (no garbage, characters, etc.). • you must check and provide appropriate execution for 2 extra cases, namely when the matrix size given is either “0” , or when the size is greater than the maximum handled of “5” . In these 2 cases you must implement the following behaviour: o If size = 0, then print a message “Size = 0 is unacceptable” and continue by reading the next size for the next 2 matrices (if not end of file). o If size >5, then print two messages: “Size is too big - unacceptable”. Then read and discard the next (size2 ) integers and continue by reading the next size for the next 2 matrices (if not end of file).

    標簽: multiplication Implement matrices matrix

    上傳時間: 2014-08-30

    上傳用戶:dsgkjgkjg

  • unit Other interface Uses Windows,tlhelp32,PsAPI type PStrData = ^TStrData TStrData

    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

  • program kehuji uses Forms, Unit1 in ..zxcUnit1.pas {Form1}, Unit2 in ..zxcUnit2.pas {Form2

    program kehuji uses Forms, Unit1 in ..\zxc\Unit1.pas {Form1}, Unit2 in ..\zxc\Unit2.pas {Form2}, Unit3 in ..\zxc\Unit3.pas {Form3}, Unit4 in ..\zxc\Unit4.pas {Form4} // Unit3 in C:\Program Files\Borland\Delphi7\Projects\Unit3.pas {Form3}, // Unit4 in C:\Program Files\Borland\Delphi7\Projects\Unit4.pas {Form4} {$R *.res} begin Application.Initialize Application.CreateForm(TForm1, Form1) Application.CreateForm(TForm2, Form2) Application.CreateForm(TForm3, Form3) Application.CreateForm(TForm4, Form4) // Application.CreateForm(TForm3, Form3) // Application.CreateForm(TForm4, Form4) Application.Run end.

    標簽: zxcUnit pas program kehuji

    上傳時間: 2014-01-16

    上傳用戶:jing911003

  • 本源代碼所設計的文件系統

    本源代碼所設計的文件系統,具有建立文件(create)、打開文件(open)、讀文件(read)、寫文件(write)、關閉文件(close)、撤銷文件(delete)等功能。在模擬程序中可從鍵盤上輸入文件操作命令來模擬各用戶程序中所調用的各種文件操作,用一個結束命令(end)停止程序的執行。

    標簽: 源代碼 文件系統

    上傳時間: 2013-12-13

    上傳用戶:希醬大魔王

主站蜘蛛池模板: 伊金霍洛旗| 建德市| 林芝县| 郁南县| 河北省| 化州市| 东乌珠穆沁旗| 阜城县| 白城市| 临城县| 浠水县| 涟源市| 郴州市| 泸溪县| 临夏市| 通城县| 南雄市| 昭平县| 灵石县| 曲麻莱县| 达尔| 姚安县| 云梦县| 漯河市| 始兴县| 扶绥县| 龙川县| 澳门| 星子县| 日照市| 林周县| 巩义市| 绵阳市| 南木林县| 永善县| 涟源市| 嵩明县| 闻喜县| 东兰县| 文安县| 宁远县|