107 lines
8.1 KiB
XML
107 lines
8.1 KiB
XML
# Audit - StellaOps.Cryptography.Plugin.Eidas
|
|
|
|
## Project
|
|
- Path: ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/StellaOps.Cryptography.Plugin.Eidas.csproj
|
|
- Module: ..
|
|
- Kind: Library
|
|
- Audit date (UTC): 2026-01-30
|
|
- Files scanned: 15
|
|
- Files with issues: 15
|
|
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
|
|
|
|
## Coding Standards Findings
|
|
- Status: FAIL
|
|
- Nullable: enable
|
|
- TreatWarningsAsErrors: explicit true
|
|
- Deterministic: inherited true
|
|
- 100-line rule violations: 12
|
|
- Namespace violations: 15
|
|
- Using directive violations: 0
|
|
- Naming violations (interfaces/fields/const/async): 0
|
|
- Service locator usage (BuildServiceProvider/GetService): 0
|
|
- Assembly.LoadFrom usage: 0
|
|
|
|
### Details
|
|
- 100-line files:
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs (518 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Tests/EtsiConformanceTestVectors.cs (190 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/CadesSignatureBuilder.cs (319 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EidasTimestampingExtensions.cs (146 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EuTrustListService.cs (406 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/ICadesSignatureBuilder.cs (211 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/IEuTrustListService.cs (182 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/IQualifiedTimestampVerifier.cs (215 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/ITimestampModeSelector.cs (104 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTimestampVerifier.cs (404 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTsaConfiguration.cs (258 lines)
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/TimestampModeSelector.cs (217 lines)
|
|
- Namespace issues:
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Eidas.AssemblyInfo.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Eidas.GlobalUsings.g.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Tests/EtsiConformanceTestVectors.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/CadesSignatureBuilder.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EidasTimestampingExtensions.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EuTrustListService.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/ICadesSignatureBuilder.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/IEuTrustListService.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/IQualifiedTimestampVerifier.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/ITimestampModeSelector.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTimestampVerifier.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTsaConfiguration.cs: missing namespace
|
|
- ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/TimestampModeSelector.cs: missing namespace
|
|
- Using directive issues:
|
|
- none
|
|
- Naming issues:
|
|
- none
|
|
- Async issues:
|
|
- none
|
|
- Service locator matches:
|
|
- none
|
|
- Assembly.LoadFrom matches:
|
|
- none
|
|
|
|
### Fix Guidance
|
|
- Normalize namespaces to file-scoped StellaOps.<Area>.
|
|
- Split files over 100 lines into smaller types or partials.
|
|
|
|
## File-Level Findings
|
|
- Status: FAIL
|
|
- Files scanned: 15
|
|
- Files with issues: 15
|
|
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
|
|
|
|
| File | Issues | Fix guidance |
|
|
| --- | --- | --- |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Eidas.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Eidas.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Tests/EtsiConformanceTestVectors.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/CadesSignatureBuilder.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EidasTimestampingExtensions.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EuTrustListService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/ICadesSignatureBuilder.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/IEuTrustListService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/IQualifiedTimestampVerifier.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/ITimestampModeSelector.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTimestampVerifier.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTsaConfiguration.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
| ../src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/TimestampModeSelector.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
|
|
|
|
## Testing Fullness Findings
|
|
- Status: PASS
|
|
- Expected layers (heuristic): Unit
|
|
- Detected test projects: ../src/Cryptography/__Tests/StellaOps.Cryptography.Tests/StellaOps.Cryptography.Tests.csproj [Unit]
|
|
- Missing layers: none
|
|
|
|
### Manual checks required
|
|
- Observability contract tests for WebService/Worker.
|
|
- Intent tags for regulatory modules (Policy, Authority, Signer, Attestor, EvidenceLocker).
|
|
- Offline execution (tests must run without network access).
|
|
- Coverage matrix alignment (docs/technical/testing/TEST_COVERAGE_MATRIX.md).
|
|
|
|
### Fix Guidance
|
|
- None.
|