{"id":37044704,"url":"https://github.com/advanced-systems/security","last_synced_at":"2026-01-14T05:10:18.191Z","repository":{"id":246080634,"uuid":"820043959","full_name":"Advanced-Systems/security","owner":"Advanced-Systems","description":"This library provides classes and services for symmetric and asymmetric standard cryptographic algorithms based on the .NET cryptography system.","archived":false,"fork":false,"pushed_at":"2025-07-19T20:24:13.000Z","size":327,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-29T23:25:04.206Z","etag":null,"topics":["advanced-systems","cryptography"],"latest_commit_sha":null,"homepage":"https://advanced-systems.github.io/security","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Advanced-Systems.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-25T17:25:32.000Z","updated_at":"2025-02-08T19:20:24.000Z","dependencies_parsed_at":"2024-08-24T20:45:19.055Z","dependency_job_id":null,"html_url":"https://github.com/Advanced-Systems/security","commit_stats":null,"previous_names":["advanced-systems/security"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Advanced-Systems/security","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Advanced-Systems%2Fsecurity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Advanced-Systems%2Fsecurity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Advanced-Systems%2Fsecurity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Advanced-Systems%2Fsecurity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Advanced-Systems","download_url":"https://codeload.github.com/Advanced-Systems/security/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Advanced-Systems%2Fsecurity/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28410250,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["advanced-systems","cryptography"],"created_at":"2026-01-14T05:10:17.635Z","updated_at":"2026-01-14T05:10:18.186Z","avatar_url":"https://github.com/Advanced-Systems.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\r\n  \u003ca title=\"Project Logo\"\u003e\r\n    \u003cimg height=\"150\" style=\"margin-top:15px\" src=\"https://raw.githubusercontent.com/Advanced-Systems/assets/master/logos/svg/min/adv-logo.svg\"\u003e\r\n  \u003c/a\u003e\r\n\u003c/p\u003e\r\n\r\n\u003ch1 align=\"center\"\u003eAdvanced Systems Security\u003c/h1\u003e\r\n\r\n[![Unit Tests](https://github.com/Advanced-Systems/security/actions/workflows/dotnet-tests.yml/badge.svg)](https://github.com/Advanced-Systems/security/actions/workflows/dotnet-tests.yml)\r\n[![CodeQL](https://github.com/Advanced-Systems/security/actions/workflows/codeql.yml/badge.svg)](https://github.com/Advanced-Systems/security/actions/workflows/codeql.yml)\r\n[![Docs](https://github.com/Advanced-Systems/security/actions/workflows/docs.yml/badge.svg)](https://github.com/Advanced-Systems/security/actions/workflows/docs.yml)\r\n\r\n## About\r\n\r\nThe `AdvancedSystems.Security` library provides classes and services for symmetric and\r\nasymmetric standard cryptographic algorithms based on the .NET cryptography system.\r\n\r\n```powershell\r\ndotnet add package AdvancedSystems.Security\r\n```\r\n\r\nThe changelog for this package are available [here](https://advanced-systems.github.io/security/docs/changelog.html).\r\n\r\nPackage consumers can also use the symbols published to nuget.org symbol server by adding \u003chttps://symbols.nuget.org/download/symbols\u003e\r\nto their symbol sources in Visual Studio, which allows stepping into package code in the Visual Studio debugger. See\r\n[Specify symbol (.pdb) and source files in the Visual Studio debugger](https://learn.microsoft.com/en-us/visualstudio/debugger/specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger)\r\nfor details on that process.\r\n\r\nAdditionally, this project also supports [source link technology](https://learn.microsoft.com/en-us/dotnet/standard/library-guidance/sourcelink)\r\nfor debugging .NET assemblies.\r\n\r\n## Development Environment\r\n\r\nConfigure local user secrets for the test suite (optional):\r\n\r\n```powershell\r\n$Password = Read-Host -Prompt \"AdvancedSystems-CA.pfx Password\"\r\ndotnet user-secrets set CertificatePassword $Password --project ./AdvancedSystems.Tests\r\n```\r\n\r\nRun test suite:\r\n\r\n```powershell\r\ndotnet test ./AdvancedSystems.Core.Tests --configuration Release\r\n```\r\n\r\nIn addition to unit testing, this project also uses stryker for mutation testing, which is setup to be installed with\r\n\r\n```powershell\r\ndotnet tool restore --configfile nuget.config\r\n```\r\n\r\nRun stryker locally:\r\n\r\n```powershell\r\ndotnet stryker\r\n```\r\n\r\nBuild and serve documentation locally (`http://localhost:8080`):\r\n\r\n```powershell\r\ndocfx ./docs/docfx.json --serve\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadvanced-systems%2Fsecurity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadvanced-systems%2Fsecurity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadvanced-systems%2Fsecurity/lists"}