Template
1
0

Added QuickDigest5 for MD5 Hashing, added bare bones responding, added Helper namespace, and minor redesign of methods

This commit is contained in:
2025-06-25 23:24:05 +03:00
parent 98c4eafdbe
commit 0e9cbe57d9
9 changed files with 1098 additions and 8 deletions

View File

@@ -0,0 +1,24 @@
name: Build CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build Example
run: |
mkdir dist
g++ -Weffc++ -Wall -Wpedantic -o dist/simple_example -Iinclude src/*.cpp examples/simple_example.cpp
- name: Test MD5 Output Hash
run: |
dist/simple_example dist/simple_example
md5sum dist/simple_example