- Added DefaultCryptoHmac class implementing ICryptoHmac interface. - Introduced purpose-based HMAC computation methods. - Implemented verification methods for HMACs with constant-time comparison. - Created HmacAlgorithms and HmacPurpose classes for well-known identifiers. - Added compliance profile support for HMAC algorithms. - Included asynchronous methods for HMAC computation from streams.
30 lines
723 B
YAML
30 lines
723 B
YAML
name: scanner-determinism
|
|
on:
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
determinism:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Task Pack offline bundle fixtures
|
|
run: python3 scripts/packs/run-fixtures-check.sh
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: "10.0.100"
|
|
|
|
- name: Run determinism harness
|
|
run: |
|
|
chmod +x scripts/scanner/determinism-run.sh
|
|
scripts/scanner/determinism-run.sh
|
|
|
|
- name: Upload determinism artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: scanner-determinism
|
|
path: out/scanner-determinism/**
|