├── .gitattributes ├── .gitignore ├── .vs └── arduino-psa-diag │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ └── v16 │ └── .suo ├── README.md ├── arduino-psa-diag.sln ├── arduino-psa-diag ├── 308.nac ├── AES │ ├── AESCrypt.cs │ ├── AESCryptOptions.cs │ └── AESPasswordHash.cs ├── MainForm.cs ├── MainForm.resx ├── ParamsForm.cs ├── ParamsForm.resx ├── Program.cs ├── SeedKeyGenerator.cs ├── arduino-psa-diag.csproj ├── arduino-psa-diag.csproj.user ├── cirocco.json ├── cirocco_crypt.json ├── nac.json └── nac_crypt.json ├── arduino-sketch └── arduino-psa-diag.ino ├── ecu.md └── protocol.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/arduino-psa-diag/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/.vs/arduino-psa-diag/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/arduino-psa-diag/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/.vs/arduino-psa-diag/v16/.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/README.md -------------------------------------------------------------------------------- /arduino-psa-diag.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag.sln -------------------------------------------------------------------------------- /arduino-psa-diag/308.nac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/308.nac -------------------------------------------------------------------------------- /arduino-psa-diag/AES/AESCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/AES/AESCrypt.cs -------------------------------------------------------------------------------- /arduino-psa-diag/AES/AESCryptOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/AES/AESCryptOptions.cs -------------------------------------------------------------------------------- /arduino-psa-diag/AES/AESPasswordHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/AES/AESPasswordHash.cs -------------------------------------------------------------------------------- /arduino-psa-diag/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/MainForm.cs -------------------------------------------------------------------------------- /arduino-psa-diag/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/MainForm.resx -------------------------------------------------------------------------------- /arduino-psa-diag/ParamsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/ParamsForm.cs -------------------------------------------------------------------------------- /arduino-psa-diag/ParamsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/ParamsForm.resx -------------------------------------------------------------------------------- /arduino-psa-diag/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/Program.cs -------------------------------------------------------------------------------- /arduino-psa-diag/SeedKeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/SeedKeyGenerator.cs -------------------------------------------------------------------------------- /arduino-psa-diag/arduino-psa-diag.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/arduino-psa-diag.csproj -------------------------------------------------------------------------------- /arduino-psa-diag/arduino-psa-diag.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/arduino-psa-diag.csproj.user -------------------------------------------------------------------------------- /arduino-psa-diag/cirocco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/cirocco.json -------------------------------------------------------------------------------- /arduino-psa-diag/cirocco_crypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/cirocco_crypt.json -------------------------------------------------------------------------------- /arduino-psa-diag/nac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/nac.json -------------------------------------------------------------------------------- /arduino-psa-diag/nac_crypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-psa-diag/nac_crypt.json -------------------------------------------------------------------------------- /arduino-sketch/arduino-psa-diag.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/arduino-sketch/arduino-psa-diag.ino -------------------------------------------------------------------------------- /ecu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/ecu.md -------------------------------------------------------------------------------- /protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragouf/PSA-Arduino-NAC-RCC/HEAD/protocol.md --------------------------------------------------------------------------------