Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .claude/settings.json

This file was deleted.

11 changes: 2 additions & 9 deletions .github/workflows/keyfactor-bootstrap-workflow-v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,10 @@ on:

jobs:
call-starter-workflow:
uses: keyfactor/actions/.github/workflows/starter.yml@v5
with:
command_token_url: ${{ vars.COMMAND_TOKEN_URL }}
command_hostname: ${{ vars.COMMAND_HOSTNAME }}
command_base_api_path: ${{ vars.COMMAND_API_PATH }}
uses: keyfactor/actions/.github/workflows/starter.yml@v3.1.2
secrets:
token: ${{ secrets.V2BUILDTOKEN}}
APPROVE_README_PUSH: ${{ secrets.APPROVE_README_PUSH}}
gpg_key: ${{ secrets.KF_GPG_PRIVATE_KEY }}
gpg_pass: ${{ secrets.KF_GPG_PASSPHRASE }}
scan_token: ${{ secrets.SAST_TOKEN }}
entra_username: ${{ secrets.DOCTOOL_ENTRA_USERNAME }}
entra_password: ${{ secrets.DOCTOOL_ENTRA_PASSWD }}
command_client_id: ${{ secrets.COMMAND_CLIENT_ID }}
command_client_secret: ${{ secrets.COMMAND_CLIENT_SECRET }}
564 changes: 229 additions & 335 deletions README.md

Large diffs are not rendered by default.

1,252 changes: 150 additions & 1,102 deletions cscglobal-caplugin/CSCGlobalCAPlugin.cs

Large diffs are not rendered by default.

16 changes: 12 additions & 4 deletions cscglobal-caplugin/CSCGlobalCAPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<TargetFrameworks>net10.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<RootNamespace>Keyfactor.Extensions.CAPlugin.CSCGlobal</RootNamespace>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<ImplicitUsings>enable</ImplicitUsings>
Expand All @@ -16,16 +16,24 @@
<Exec Condition="'$(Configuration)'=='DebugAndPush'" Command="PowerShell -ExecutionPolicy Bypass -File &quot;C:\Users\mkachkaev\source\repos\scripts\SyncScriptCSC.ps1&quot;&#xA;" />
</Target>

<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Keyfactor.AnyGateway.IAnyCAPlugin" Version="3.3.0" />

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Keyfactor.AnyGateway.IAnyCAPlugin" Version="3.1.0" />
<PackageReference Include="Keyfactor.PKI" Version="8.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Keyfactor.AnyGateway.IAnyCAPlugin" Version="3.1.0" />
<PackageReference Include="Keyfactor.PKI" Version="6.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>


<ItemGroup>
<None Update="manifest.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
</Project>
269 changes: 53 additions & 216 deletions cscglobal-caplugin/Client/CscGlobalClient.cs

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions cscglobal-caplugin/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ namespace Keyfactor.Extensions.CAPlugin.CSCGlobal;

public class Constants
{
public static string Enabled = "Enabled";
public static string CscGlobalUrl = "CscGlobalUrl";
public static string CscGlobalApiKey = "ApiKey";
public static string BearerToken = "BearerToken";
public static string DefaultPageSize = "DefaultPageSize";
public static string TemplateSync = "TemplateSync";
public static string SyncFilterDays = "SyncFilterDays";
public static string RenewalWindowDays = "RenewalWindowDays";
public static string DcvPollTimeoutSeconds = "DcvPollTimeoutSeconds";
}

public class ProductIDs
Expand All @@ -28,8 +26,8 @@ public class ProductIDs
"CSC TrustedSecure UC Certificate",
"CSC TrustedSecure Premium Wildcard Certificate",
"CSC TrustedSecure Domain Validated SSL",
"CSC Trusted Secure Domain Validated Wildcard SSL",
"CSC Trusted Secure Domain Validated UC Certificate"
"CSC TrustedSecure Domain Validated Wildcard SSL",
"CSC TrustedSecure Domain Validated UC Certificate"
};
}

Expand Down
241 changes: 0 additions & 241 deletions cscglobal-caplugin/FlowLogger.cs

This file was deleted.

Loading
Loading