[C++] 使用 openssl 函式庫,計算檔案的 SHA1 值
今天用 C++ 呼叫 openssl 來計算一個檔案的 SHA1 值, 簡單用這篇記錄一下寫完的函式吧: #include <openssl/sha.h&…
今天用 C++ 呼叫 openssl 來計算一個檔案的 SHA1 值, 簡單用這篇記錄一下寫完的函式吧: #include <openssl/sha.h&…
前一陣子幫專案用 make -j 的方式,執行平行編譯,加快編譯的速度, 不過最近在加上 Google Protocol Buffer 的編譯之後, 卻發現常常…
今天在追一個專案的問題,想說在原本的 C++ 程式裡, 把同事寫的另一個 shared library (DLL) 也加進來, 原本應該要用動態連結 (dyna…
今天在寫一個測試程式,要尋訪特定目錄下所有的子目錄與檔案, 在 Linux 下要實現這個程式,就是要用到 opendir, readdir, 和 closedi…
今天在跑 unit-testing 程式時,發現在跑到某個 test case 時會一直出錯, 但是如果每次都跑全部的 test case 又頗浪費時間, 於是…
最近在查一個 C++ 程式莫名其妙會當掉的問題… 蠻難查的,因為通常是跑了幾個小時後才會出現, 但如果拿 core dump 出現當時的資料重新跑一…
最近在查一個 C++ 程式當掉的問題,懷疑是多執行緒 (multi-thread) 造成的, 因此在 Google Test 的 unit-testing 程式…