semi implemented and features implemented save checkpoint

This commit is contained in:
master
2026-02-08 18:00:49 +02:00
parent 04360dff63
commit 1bf6bbf395
20895 changed files with 716795 additions and 64 deletions

View File

@@ -0,0 +1,106 @@
# Audit - StellaOps.Cryptography.Plugin.Eidas
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/StellaOps.Cryptography.Plugin.Eidas.csproj
- Module: Cryptography
- 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.

View File

@@ -0,0 +1,98 @@
# Audit - StellaOps.Cryptography.Plugin.Eidas
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/StellaOps.Cryptography.Plugin.Eidas.csproj
- Module: Cryptography
- Kind: Plugin
- Audit date (UTC): 2026-01-31
- Files scanned: 12
- Files with issues: 12
- 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: 0
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 6
- Service locator usage (BuildServiceProvider/GetService): 3
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs (519 lines)
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Tests/EtsiConformanceTestVectors.cs (190 lines)
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/CadesSignatureBuilder.cs (320 lines)
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EidasTimestampingExtensions.cs (146 lines)
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EuTrustListService.cs (407 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 (405 lines)
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTsaConfiguration.cs (258 lines)
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/TimestampModeSelector.cs (218 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs: using directives inside namespace
- Naming issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EuTrustListService.cs: private field naming
- Async issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs: async method naming
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/CadesSignatureBuilder.cs: missing ConfigureAwait(false)
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EuTrustListService.cs: async method naming
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EuTrustListService.cs: missing ConfigureAwait(false)
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTimestampVerifier.cs: missing ConfigureAwait(false)
- Service locator matches:
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs:77 _cadesBuilder = context.Services.GetService<ICadesSignatureBuilder>();
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs:78 _timestampModeSelector = context.Services.GetService<ITimestampModeSelector>();
- src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/EidasPlugin.cs:79 _timestampVerifier = context.Services.GetService<IQualifiedTimestampVerifier>();
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Align interface/field/const naming to standards.
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Replace service locator usage with constructor injection.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 12
- Files with issues: 12
- 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 | AsyncNaming; FileLength>100; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Tests/EtsiConformanceTestVectors.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/CadesSignatureBuilder.cs | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EidasTimestampingExtensions.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/EuTrustListService.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/ICadesSignatureBuilder.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/IEuTrustListService.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/IQualifiedTimestampVerifier.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/ITimestampModeSelector.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTimestampVerifier.cs | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/QualifiedTsaConfiguration.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Eidas/Timestamping/TimestampModeSelector.cs | FileLength>100 | 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.

View File

@@ -0,0 +1,80 @@
# Audit - StellaOps.Cryptography.Plugin.Fips
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Fips/StellaOps.Cryptography.Plugin.Fips.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 1
- Namespace violations: 7
- 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.Fips/FipsPlugin.cs (432 lines)
- Namespace issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Fips/FipsPlugin.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Fips.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Fips.GlobalUsings.g.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Fips.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Fips.GlobalUsings.g.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: 7
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin.Fips/FipsPlugin.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Fips.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Fips.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Fips.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Fips/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Fips.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,68 @@
# Audit - StellaOps.Cryptography.Plugin.Fips
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Fips/StellaOps.Cryptography.Plugin.Fips.csproj
- Module: Cryptography
- Kind: Plugin
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- 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: 1
- Namespace violations: 0
- Using directive violations: 1
- 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.Fips/FipsPlugin.cs (433 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Fips/FipsPlugin.cs: using directives inside namespace
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin.Fips/FipsPlugin.cs | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - StellaOps.Cryptography.Plugin.Gost
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Gost/StellaOps.Cryptography.Plugin.Gost.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 1
- Namespace violations: 7
- 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.Gost/GostPlugin.cs (343 lines)
- Namespace issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Gost/GostPlugin.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Gost.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Gost.GlobalUsings.g.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Gost.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Gost.GlobalUsings.g.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: 7
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin.Gost/GostPlugin.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Gost.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Gost.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Gost.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Gost/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Gost.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,67 @@
# Audit - StellaOps.Cryptography.Plugin.Gost
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Gost/StellaOps.Cryptography.Plugin.Gost.csproj
- Module: Cryptography
- Kind: Plugin
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- 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: 1
- Namespace violations: 0
- 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.Gost/GostPlugin.cs (344 lines)
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin.Gost/GostPlugin.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,82 @@
# Audit - StellaOps.Cryptography.Plugin.Hsm
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/StellaOps.Cryptography.Plugin.Hsm.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 8
- Files with issues: 8
- 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: 2
- Namespace violations: 8
- 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.Hsm/HsmPlugin.cs (478 lines)
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/Pkcs11HsmClientImpl.cs (718 lines)
- Namespace issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/HsmPlugin.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/Pkcs11HsmClientImpl.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Hsm.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Hsm.GlobalUsings.g.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Hsm.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Hsm.GlobalUsings.g.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: 8
- Files with issues: 8
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/HsmPlugin.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/Pkcs11HsmClientImpl.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Hsm.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Hsm.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Hsm.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Hsm.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## 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.

View File

@@ -0,0 +1,74 @@
# Audit - StellaOps.Cryptography.Plugin.Hsm
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/StellaOps.Cryptography.Plugin.Hsm.csproj
- Module: Cryptography
- Kind: Plugin
- Audit date (UTC): 2026-01-31
- Files scanned: 2
- Files with issues: 2
- 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: 2
- Namespace violations: 0
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 5
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/HsmPlugin.cs (479 lines)
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/Pkcs11HsmClientImpl.cs (719 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/HsmPlugin.cs: using directives inside namespace
- Naming issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/Pkcs11HsmClientImpl.cs: private field naming
- Async issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/HsmPlugin.cs: async method naming
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/HsmPlugin.cs: missing ConfigureAwait(false)
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/Pkcs11HsmClientImpl.cs: async method naming
- src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/Pkcs11HsmClientImpl.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Align interface/field/const naming to standards.
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 2
- Files with issues: 2
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/HsmPlugin.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Hsm/Pkcs11HsmClientImpl.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; 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.

View File

@@ -0,0 +1,80 @@
# Audit - StellaOps.Cryptography.Plugin.Sm
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Sm/StellaOps.Cryptography.Plugin.Sm.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 1
- Namespace violations: 7
- 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.Sm/SmPlugin.cs (365 lines)
- Namespace issues:
- src/Cryptography/StellaOps.Cryptography.Plugin.Sm/SmPlugin.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Sm.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Sm.GlobalUsings.g.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Sm.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Sm.GlobalUsings.g.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: 7
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin.Sm/SmPlugin.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Sm.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.Sm.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Sm.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin.Sm/obj/Release/net10.0/StellaOps.Cryptography.Plugin.Sm.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,67 @@
# Audit - StellaOps.Cryptography.Plugin.Sm
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin.Sm/StellaOps.Cryptography.Plugin.Sm.csproj
- Module: Cryptography
- Kind: Plugin
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- 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: 1
- Namespace violations: 0
- 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.Sm/SmPlugin.cs (366 lines)
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin.Sm/SmPlugin.cs | FileLength>100 | Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,80 @@
# Audit - StellaOps.Cryptography.Plugin
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin/StellaOps.Cryptography.Plugin.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 1
- Namespace violations: 7
- 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/CryptoPluginBase.cs (168 lines)
- Namespace issues:
- src/Cryptography/StellaOps.Cryptography.Plugin/CryptoPluginBase.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.GlobalUsings.g.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin/obj/Release/net10.0/StellaOps.Cryptography.Plugin.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Plugin/obj/Release/net10.0/StellaOps.Cryptography.Plugin.GlobalUsings.g.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: 7
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin/CryptoPluginBase.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography.Plugin/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin/obj/Debug/net10.0/StellaOps.Cryptography.Plugin.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin/obj/Release/net10.0/StellaOps.Cryptography.Plugin.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Plugin/obj/Release/net10.0/StellaOps.Cryptography.Plugin.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,69 @@
# Audit - StellaOps.Cryptography.Plugin
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Plugin/StellaOps.Cryptography.Plugin.csproj
- Module: Cryptography
- Kind: Plugin
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 1
- 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: 1
- Namespace violations: 0
- Using directive violations: 0
- Naming violations (interfaces/fields/const/async): 2
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Cryptography/StellaOps.Cryptography.Plugin/CryptoPluginBase.cs (169 lines)
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- src/Cryptography/StellaOps.Cryptography.Plugin/CryptoPluginBase.cs: async method naming
- src/Cryptography/StellaOps.Cryptography.Plugin/CryptoPluginBase.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 1
- Files with issues: 1
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Plugin/CryptoPluginBase.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,79 @@
# Audit - StellaOps.Cryptography.Profiles.Ecdsa
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/StellaOps.Cryptography.Profiles.Ecdsa.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 7
- Files with issues: 7
- 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: 0
- Namespace violations: 7
- 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:
- none
- Namespace issues:
- src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/EcdsaP256Signer.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Debug/net10.0/StellaOps.Cryptography.Profiles.Ecdsa.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Debug/net10.0/StellaOps.Cryptography.Profiles.Ecdsa.GlobalUsings.g.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Release/net10.0/StellaOps.Cryptography.Profiles.Ecdsa.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Release/net10.0/StellaOps.Cryptography.Profiles.Ecdsa.GlobalUsings.g.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>.
## File-Level Findings
- Status: FAIL
- Files scanned: 7
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/EcdsaP256Signer.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Debug/net10.0/StellaOps.Cryptography.Profiles.Ecdsa.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Debug/net10.0/StellaOps.Cryptography.Profiles.Ecdsa.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Release/net10.0/StellaOps.Cryptography.Profiles.Ecdsa.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/obj/Release/net10.0/StellaOps.Cryptography.Profiles.Ecdsa.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,64 @@
# Audit - StellaOps.Cryptography.Profiles.Ecdsa
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Profiles.Ecdsa/StellaOps.Cryptography.Profiles.Ecdsa.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-31
- Files scanned: 1
- Files with issues: 0
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: PASS
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 0
- 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:
- none
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- None.
## File-Level Findings
- Status: PASS
- Files scanned: 1
- Files with issues: 0
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
- No file-level issues.
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,81 @@
# Audit - StellaOps.Cryptography.Profiles.EdDsa
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/StellaOps.Cryptography.Profiles.EdDsa.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 8
- Files with issues: 8
- 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: 0
- Namespace violations: 8
- 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:
- none
- Namespace issues:
- src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/Ed25519Signer.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/Ed25519Verifier.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Debug/net10.0/StellaOps.Cryptography.Profiles.EdDsa.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Debug/net10.0/StellaOps.Cryptography.Profiles.EdDsa.GlobalUsings.g.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Release/net10.0/StellaOps.Cryptography.Profiles.EdDsa.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Release/net10.0/StellaOps.Cryptography.Profiles.EdDsa.GlobalUsings.g.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>.
## File-Level Findings
- Status: FAIL
- Files scanned: 8
- Files with issues: 8
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/Ed25519Signer.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/Ed25519Verifier.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Debug/net10.0/StellaOps.Cryptography.Profiles.EdDsa.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Debug/net10.0/StellaOps.Cryptography.Profiles.EdDsa.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Release/net10.0/StellaOps.Cryptography.Profiles.EdDsa.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/obj/Release/net10.0/StellaOps.Cryptography.Profiles.EdDsa.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,64 @@
# Audit - StellaOps.Cryptography.Profiles.EdDsa
## Project
- Path: src/Cryptography/StellaOps.Cryptography.Profiles.EdDsa/StellaOps.Cryptography.Profiles.EdDsa.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-31
- Files scanned: 2
- Files with issues: 0
- File-level report: docs/implplan/audits/csproj-standards/file-audit.csv
## Coding Standards Findings
- Status: PASS
- Nullable: enable
- TreatWarningsAsErrors: explicit true
- Deterministic: inherited true
- 100-line rule violations: 0
- Namespace violations: 0
- 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:
- none
- Namespace issues:
- none
- Using directive issues:
- none
- Naming issues:
- none
- Async issues:
- none
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- None.
## File-Level Findings
- Status: PASS
- Files scanned: 2
- Files with issues: 0
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
- No file-level issues.
## Testing Fullness Findings
- Status: FAIL
- Expected layers (heuristic): Unit
- Detected test projects: none
- Missing layers: Unit
### 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
- Add or expand test projects to cover missing layers.
- Ensure tests use deterministic fixtures and offline harnesses.

View File

@@ -0,0 +1,108 @@
# Audit - StellaOps.Cryptography
## Project
- Path: src/Cryptography/StellaOps.Cryptography/StellaOps.Cryptography.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-30
- Files scanned: 18
- Files with issues: 18
- 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: 8
- Namespace violations: 18
- 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/MultiProfileSigner.cs (153 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/CeremonyAuthorizedRecoveryService.cs (385 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/GaloisField256.cs (261 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/IEscrowAgentStore.cs (242 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/IKeyEscrowService.cs (208 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowModels.cs (255 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowService.cs (506 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/ShamirSecretSharing.cs (238 lines)
- Namespace issues:
- src/Cryptography/StellaOps.Cryptography/IContentSigner.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/IContentVerifier.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/MultiProfileSigner.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/SignatureProfile.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/CeremonyAuthorizedRecoveryService.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/GaloisField256.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/IEscrowAgentStore.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/IKeyEscrowService.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowModels.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowService.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/ShamirSecretSharing.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/Models/MultiSignatureResult.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/Models/Signature.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/Models/SignatureResult.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/Models/VerificationResult.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/obj/Debug/net10.0/StellaOps.Cryptography.AssemblyInfo.cs: missing namespace
- src/Cryptography/StellaOps.Cryptography/obj/Debug/net10.0/StellaOps.Cryptography.GlobalUsings.g.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: 18
- Files with issues: 18
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography/IContentSigner.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/IContentVerifier.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/MultiProfileSigner.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/SignatureProfile.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/CeremonyAuthorizedRecoveryService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/GaloisField256.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/IEscrowAgentStore.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/IKeyEscrowService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowModels.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowService.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/ShamirSecretSharing.cs | FileLength>100; NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>;; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/Models/MultiSignatureResult.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/Models/Signature.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/Models/SignatureResult.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/Models/VerificationResult.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/obj/Debug/net10.0/StellaOps.Cryptography.AssemblyInfo.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| src/Cryptography/StellaOps.Cryptography/obj/Debug/net10.0/StellaOps.Cryptography.GlobalUsings.g.cs | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
## 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.

View File

@@ -0,0 +1,85 @@
# Audit - StellaOps.Cryptography
## Project
- Path: src/Cryptography/StellaOps.Cryptography/StellaOps.Cryptography.csproj
- Module: Cryptography
- Kind: Library
- Audit date (UTC): 2026-01-31
- Files scanned: 15
- Files with issues: 8
- 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: 8
- Namespace violations: 0
- Using directive violations: 1
- Naming violations (interfaces/fields/const/async): 4
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Cryptography/StellaOps.Cryptography/MultiProfileSigner.cs (154 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/CeremonyAuthorizedRecoveryService.cs (385 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/GaloisField256.cs (261 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/IEscrowAgentStore.cs (242 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/IKeyEscrowService.cs (208 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowModels.cs (255 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowService.cs (507 lines)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/ShamirSecretSharing.cs (238 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowService.cs: using directives inside namespace
- Naming issues:
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/GaloisField256.cs: private field naming
- Async issues:
- src/Cryptography/StellaOps.Cryptography/MultiProfileSigner.cs: missing ConfigureAwait(false)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/CeremonyAuthorizedRecoveryService.cs: missing ConfigureAwait(false)
- src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowService.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Align interface/field/const naming to standards.
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 15
- Files with issues: 8
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/StellaOps.Cryptography/MultiProfileSigner.cs | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/CeremonyAuthorizedRecoveryService.cs | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/GaloisField256.cs | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/IEscrowAgentStore.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/IKeyEscrowService.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowModels.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/KeyEscrowService.cs | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| src/Cryptography/StellaOps.Cryptography/KeyEscrow/ShamirSecretSharing.cs | FileLength>100 | 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.

View File

@@ -0,0 +1,87 @@
# Audit - StellaOps.Cryptography.Tests
## Project
- Path: src/Cryptography/__Tests/StellaOps.Cryptography.Tests/StellaOps.Cryptography.Tests.csproj
- Module: Cryptography
- Kind: Test
- Audit date (UTC): 2026-01-31
- Files scanned: 8
- Files with issues: 7
- 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: 6
- Namespace violations: 0
- Using directive violations: 4
- Naming violations (interfaces/fields/const/async): 6
- Service locator usage (BuildServiceProvider/GetService): 0
- Assembly.LoadFrom usage: 0
### Details
- 100-line files:
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/CryptographyModelTests.cs (318 lines)
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/ShamirSecretSharingTests.cs (385 lines)
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/Eidas/QualifiedTsaProviderTests.cs (289 lines)
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/Eidas/TimestampModeSelectorTests.cs (385 lines)
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.cs (531 lines)
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.Fixed.cs (183 lines)
- Namespace issues:
- none
- Using directive issues:
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/Hsm/Pkcs11HsmClientIntegrationTests.cs: using directives inside namespace
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.cs: using directives inside namespace
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.cs: using directives not sorted
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.Fixed.cs: using directives not sorted
- Naming issues:
- none
- Async issues:
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/Hsm/Pkcs11HsmClientIntegrationTests.cs: async method naming
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/Hsm/Pkcs11HsmClientIntegrationTests.cs: missing ConfigureAwait(false)
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.cs: async method naming
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.cs: missing ConfigureAwait(false)
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.Fixed.cs: async method naming
- src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.Fixed.cs: missing ConfigureAwait(false)
- Service locator matches:
- none
- Assembly.LoadFrom matches:
- none
### Fix Guidance
- Move and sort using directives (outside namespace).
- Rename async methods and avoid blocking async calls.
- Split files over 100 lines into smaller types or partials.
## File-Level Findings
- Status: FAIL
- Files scanned: 8
- Files with issues: 7
- See docs/implplan/audits/csproj-standards/file-audit.csv for full per-file status.
| File | Issues | Fix guidance |
| --- | --- | --- |
| src/Cryptography/__Tests/StellaOps.Cryptography.Tests/CryptographyModelTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/__Tests/StellaOps.Cryptography.Tests/ShamirSecretSharingTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/__Tests/StellaOps.Cryptography.Tests/Eidas/QualifiedTsaProviderTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/__Tests/StellaOps.Cryptography.Tests/Eidas/TimestampModeSelectorTests.cs | FileLength>100 | Split file to stay <= 100 lines. |
| src/Cryptography/__Tests/StellaOps.Cryptography.Tests/Hsm/Pkcs11HsmClientIntegrationTests.cs | AsyncNaming; ConfigureAwaitMissing; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async. |
| src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| src/Cryptography/__Tests/StellaOps.Cryptography.Tests/KeyEscrow/KeyEscrowRecoveryIntegrationTests.Fixed.cs | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
## Testing Fullness Findings
- Status: PASS
- Expected layers (heuristic):
- Detected test projects: none
- 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.