try {
CStdioFile Sfile ((_T("BB_info.txt")),CFile::modeRead);
while (Sfile.ReadString (string)) {
TRACE (_T("%s\n"),string);
Inbuffer[i] = string;
i++; }
Sfile.Close ();
}
catch (CFileException* e) {
e->ReportError ();
e->Delete ();
return;
}
------------------------------------------------------
int Openfile() { // 讀取檔案資料,並將值存入S[陣列]
int i=0;
char filename[10];
cin >> filename;
ifstream fileptr;
fileptr.open(filename,ios::in);
while(!fileptr.eof()) {
i++;
fileptr >> s[i];
}
fileptr.close();
return i;
}
-----------------------------
/*fread IP format*/
int main ( int argc, char *argv[] )
{
FILE *fp;
struct packet
{
unsigned int tss;
unsigned int if_tsm;
unsigned int ver_IHL_ToS_TLen;
unsigned int Id_Flag_Frag_Off;
unsigned int TTL_Protocol_Checksum;
unsigned char SA0;
unsigned char SA1;
unsigned char SA2;
unsigned char SA3;
unsigned char DA0;
unsigned char DA1;
unsigned char DA2;
unsigned char DA3;
unsigned int SP_DP;
unsigned int Seq_Num;
unsigned int Ack_Num;
unsigned int DataOff;
} tsher;
int read_size;
fp=fopen(argv[1],"rb");
while (read_size=fread(&tsher,1,sizeof(tsher),fp) != 0){
printf("SA: %d.%d.%d.%d ",tsher.SA0,tsher.SA1,tsher.SA2,tsher.SA3);
printf("\tDA: %d.%d.%d.%d\n",tsher.DA0,tsher.DA1,tsher.DA2,tsher.DA3);
}
fclose(fp);
return 0;
}
一直以來我的人生毫無目標,但自從認識了美惠後,我覺得自己有了方向感 , 於是乎想利用網路部落格來抒發一下我跟美惠的日記, 也嘗試著寫一些學校學的東西文章,此Blog建立於 2008/4/17
2008年6月9日 星期一
訂閱:
張貼留言 (Atom)
[c#] process 使用方法
寫法1. Process proc = new Process(); / /PowerShell.exe path proc.StartInfo.FileName = @"c:\Windows\System32\ WindowsPowerShell\v1.0\ powe...
-
RSA加密演算法是一種 非對稱加密演算法 。在 公鑰加密標準 和 電子商業 中RSA被廣泛使用。RSA是 1977年 由 (Ron Rivest)、 (Adi Shamir)和 (Leonard Adleman)一起提出的。當時他們三人都在 麻省理工學院 工作。RSA就是他們三人...
-
20170602 : W224Z0 實驗室 • Server : Iperf -u - i 1 -w 256k -p 2000 -s • Client: Iperf -u - i 1 - w 256k -p 2000 -c 192.168.1...
-
RSA 加密程式是目前最為廣泛,且不易破解的加密演算法,現在應用在 自然人憑證,會產生公開密碼(N,e) Public Key , 記得要公開喔,否則就無法通訊,而藏在晶片卡內的 d值,則為 Private Key M-> C 很簡單 , C->M 很困難 (具...
沒有留言:
張貼留言