- 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.
42 lines
1.3 KiB
YAML
42 lines
1.3 KiB
YAML
name: scanner-analyzers-release
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
rid:
|
|
description: "RID (e.g., linux-x64)"
|
|
required: false
|
|
default: "linux-x64"
|
|
|
|
jobs:
|
|
build-analyzers:
|
|
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: Install syft (SBOM)
|
|
uses: anchore/sbom-action/download-syft@v0
|
|
|
|
- name: Package PHP analyzer
|
|
run: |
|
|
chmod +x scripts/scanner/package-analyzer.sh
|
|
RID="${{ github.event.inputs.rid }}" scripts/scanner/package-analyzer.sh src/Scanner/__Libraries/StellaOps.Scanner.Analyzers.Lang.Php/StellaOps.Scanner.Analyzers.Lang.Php.csproj php-analyzer
|
|
|
|
- name: Package Ruby analyzer
|
|
run: |
|
|
RID="${{ github.event.inputs.rid }}" scripts/scanner/package-analyzer.sh src/Scanner/__Libraries/StellaOps.Scanner.Analyzers.Lang.Ruby/StellaOps.Scanner.Analyzers.Lang.Ruby.csproj ruby-analyzer
|
|
|
|
- name: Upload analyzer artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: scanner-analyzers-${{ github.event.inputs.rid }}
|
|
path: out/scanner-analyzers/**
|