Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
Findings Ledger CI / build-test (push) Has been cancelled
Findings Ledger CI / migration-validation (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
Concelier Attestation Tests / attestation-tests (push) Has been cancelled
cryptopro-linux-csp / build-and-test (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
sm-remote-ci / build-and-test (push) Has been cancelled
Findings Ledger CI / generate-manifest (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
CryptoPro Linux CSP Service (.NET minimal API)
Minimal HTTP wrapper around the Linux CryptoPro CSP binaries to prove installation and hash operations.
Build
docker build -t cryptopro-linux-csp -f ops/cryptopro/linux-csp-service/Dockerfile .
CRYPTOPRO_ACCEPT_EULA defaults to 0 (build will fail); set to 1 only if you hold a valid CryptoPro license and accept the vendor EULA:
docker build -t cryptopro-linux-csp \
--build-arg CRYPTOPRO_ACCEPT_EULA=1 \
-f ops/cryptopro/linux-csp-service/Dockerfile .
Run
docker run --rm -p 18080:8080 --name cryptopro-linux-csp-test cryptopro-linux-csp
Endpoints:
GET /health— checkscsptestpresence.GET /license— runscsptest -keyset -info(reports errors if no keyset/token present).POST /hashwith{"data_b64":"<base64>"}— hashes usingcsptest -hash -alg GOST12_256.POST /keyset/initwith optional{"name":"<container>"}— creates an empty keyset (-keytype none) to silence missing-container warnings.
Notes:
- Uses the provided CryptoPro
.tgzbundles underopt/cryptopro/downloads. Do not setCRYPTOPRO_ACCEPT_EULA=1unless you are licensed to use these binaries. - Minimal, headless install; browser/plugin packages are not included.