File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -318,6 +318,18 @@ int main() {
318318ранние проверки могут выдать информацию через побочные каналы времени
319319выполнения.
320320
321+ Скомпилировать пример вручную после установки:
322+
323+ ``` bash
324+ g++ example.cpp -std=c++11 -Iinclude -Llib -lhmac_cpp
325+ ```
326+
327+ Для MSVC:
328+
329+ ``` bat
330+ cl /EHsc example.cpp /I include /link libhmac_cpp.lib
331+ ```
332+
321333## 📚 Полезные ссылки
322334
323335* Исходный код [ SHA256] ( http://www.zedwood.com/article/cpp-sha256-function )
Original file line number Diff line number Diff line change @@ -360,6 +360,18 @@ int main() {
360360longer for longer inputs. Avoid checking lengths separately—early length
361361comparisons can leak information through timing side channels.
362362
363+ Build the example manually after installation:
364+
365+ ``` bash
366+ g++ example.cpp -std=c++11 -Iinclude -Llib -lhmac_cpp
367+ ```
368+
369+ Using MSVC:
370+
371+ ``` bat
372+ cl /EHsc example.cpp /I include /link libhmac_cpp.lib
373+ ```
374+
363375## 📚 Resources
364376
365377* Original [ SHA256 implementation] ( http://www.zedwood.com/article/cpp-sha256-function )
You can’t perform that action at this time.
0 commit comments