Files
mxaccess/analysis/decompiled/aaServicesContractIAuthenticateASB/Properties/AssemblyInfo.cs
T
Joseph Doherty fe2a6db786
rust / build / test / clippy / fmt (push) Has been cancelled
Initial project state: .NET reference, design, Rust port (M0+M1), evidence
Layout:
- src/                    .NET 10 x64 reference: MxNativeCodec, MxNativeClient,
                          MxAsbClient, probes, tests, harnesses. Executable spec.
- design/                 Architectural plan for the Rust port (M0–M6), error
                          model, protocol invariants, risks (R1–R16), adversarial
                          review log (review.md).
- rust/                   Rust workspace. M0 skeleton + M1 codec parity.
                          mxaccess-codec: 215 unit tests + 2 cross-implementation
                          parity tests (byte-identical against .NET reference).
                          Other crates are M0 stubs awaiting M2+.
- captures/               Frida + netsh + pcap evidence per CLAUDE.md
                          ("captures are evidence, not throwaway logs").
- analysis/               Decompiled C# (frida/proxy/decompiled-*),
                          Ghidra exports for native DLLs (`exports/` only —
                          working state at `projects/` and AVEVA's input
                          binaries at `input/` are gitignored).
- docs/                   Reverse-engineering reference docs.
- tools/                  Setup-LiveProbeEnv.ps1 (Infisical credential fetcher),
                          Compute-Crc.ps1 (.NET parity helper).
- .github/workflows/      Rust CI: fmt + build + test + clippy on Windows.
- LICENSE                 MIT (Joseph Doherty, 2026).

Verified:
- cargo test --workspace → 217 passed (215 unit + 2 .NET parity), 0 failed
- cargo clippy --workspace -- -D warnings → clean
- cargo fmt --all -- --check → clean
- cargo publish --dry-run -p mxaccess-codec → packages cleanly

Excluded from history (see .gitignore):
- **/bin, **/obj, **/target — build artifacts
- analysis/ghidra/projects/ — Ghidra working state (regenerable)
- analysis/ghidra/input/ — AVEVA proprietary DLLs (vendor IP)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-05 06:21:00 -04:00

22 lines
2.3 KiB
C#

using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
[assembly: AssemblyTrademark("Refer to: https://sw.aveva.com/legal/trademarks")]
[assembly: CLSCompliant(false)]
[assembly: InternalsVisibleTo("Contract.IAuthenticateASB.UnitTest, PublicKey=0024000004800000940000000602000000240000525341310004000001000100bd93c789db4fc111921cb26c0c84c98b814989934efaf5db327d28ae4393df69402fcc2043d0767a22919510c438dea0a535baac763803356f4b63cc8890e3f17dbf0dd81318854034fa1c8d6efba84b8ff138bc9396f2ad7f696c0aa9e2b4cc8f63204810954f17b912bc31c29f8607d061d744a55fcf8253734bec598a5bc2")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]
[assembly: InternalsVisibleTo("Asb.Runtime.V3, PublicKey=0024000004800000940000000602000000240000525341310004000001000100A79FB5CE9AF5B80294B8B7AE7B476BCBF30B0713351655B2170195CD14ACD8ED1462DF1AB3A167D5463BD76A6151DD1766B94C350994D233A7024266591EE249882A4EE9C9E4DE90DCD4C3762F274652CABAC4A99704A9073872505B090F638E1A0827AEAC9FF572D93D1A7800669DC0CE920817BD5AA5D70BACB7DF88B4FDB3")]
[assembly: InternalsVisibleTo("ASBIDataV3.UnitTest, PublicKey=0024000004800000940000000602000000240000525341310004000001000100A79FB5CE9AF5B80294B8B7AE7B476BCBF30B0713351655B2170195CD14ACD8ED1462DF1AB3A167D5463BD76A6151DD1766B94C350994D233A7024266591EE249882A4EE9C9E4DE90DCD4C3762F274652CABAC4A99704A9073872505B090F638E1A0827AEAC9FF572D93D1A7800669DC0CE920817BD5AA5D70BACB7DF88B4FDB3")]
[assembly: AssemblyCompany("AVEVA Software, LLC")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyCopyright("Copyright © 2020 AVEVA Group plc and its subsidiaries. All rights reserved.")]
[assembly: AssemblyDescription("ASB Service Base Contracts.")]
[assembly: AssemblyFileVersion("2018.4.20078.1")]
[assembly: AssemblyInformationalVersion("4.4.6")]
[assembly: AssemblyProduct("PCS WCF Services")]
[assembly: AssemblyTitle("aaServicesContractIAuthenticateASB")]
[assembly: AssemblyVersion("1.0.0.0")]