Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Concelier Attestation Tests / attestation-tests (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
wine-csp-build / Build Wine CSP Image (push) Has been cancelled
- Implemented PqSoftCryptoProvider for software-only post-quantum algorithms (Dilithium3, Falcon512) using BouncyCastle. - Added PqSoftProviderOptions and PqSoftKeyOptions for configuration. - Created unit tests for Dilithium3 and Falcon512 signing and verification. - Introduced EcdsaPolicyCryptoProvider for compliance profiles (FIPS/eIDAS) with explicit allow-lists. - Added KcmvpHashOnlyProvider for KCMVP baseline compliance. - Updated project files and dependencies for new libraries and testing frameworks.
50 lines
1.9 KiB
Plaintext
50 lines
1.9 KiB
Plaintext
# Wine CSP Service Environment Configuration
|
|
# ===========================================================================
|
|
#
|
|
# WARNING: This service is for TEST VECTOR GENERATION ONLY.
|
|
# It MUST NOT be used for production cryptographic signing operations.
|
|
#
|
|
# ===========================================================================
|
|
|
|
# Service port (default: 5099)
|
|
WINE_CSP_PORT=5099
|
|
|
|
# Operation mode:
|
|
# - limited: Works without CryptoPro CSP (basic GostCryptography only)
|
|
# - full: Requires CryptoPro CSP installer to be mounted at WINE_CSP_INSTALLER_PATH
|
|
WINE_CSP_MODE=limited
|
|
|
|
# Path to CryptoPro CSP installer MSI (customer-provided)
|
|
# Mount your licensed CSP installer to /opt/cryptopro/csp-installer.msi
|
|
WINE_CSP_INSTALLER_PATH=/opt/cryptopro/csp-installer.msi
|
|
|
|
# Logging level: Trace, Debug, Information, Warning, Error, Critical
|
|
WINE_CSP_LOG_LEVEL=Information
|
|
|
|
# Image version tag
|
|
WINE_CSP_VERSION=2025.10.0-edge
|
|
|
|
# ASP.NET Core environment (Development, Staging, Production)
|
|
ASPNETCORE_ENVIRONMENT=Production
|
|
|
|
# ===========================================================================
|
|
# Advanced Configuration (typically not changed)
|
|
# ===========================================================================
|
|
|
|
# Wine debug output (set to "warn+all" for troubleshooting)
|
|
# WINEDEBUG=-all
|
|
|
|
# Wine architecture (must be win64 for CryptoPro CSP)
|
|
# WINEARCH=win64
|
|
|
|
# ===========================================================================
|
|
# Volume Mounts (configure in docker-compose, not here)
|
|
# ===========================================================================
|
|
# - Wine prefix: /home/winecsp/.wine (persistent storage)
|
|
# - CSP installer: /opt/cryptopro (read-only mount)
|
|
# - Logs: /var/log/wine-csp (log output)
|
|
#
|
|
# Example mount for CSP installer:
|
|
# volumes:
|
|
# - /path/to/your/csp-5.0.msi:/opt/cryptopro/csp-installer.msi:ro
|