Skip to content

Commit 7d705c2

Browse files
leefine02leefine02
authored andcommitted
ab92696
1 parent 5d6d5f7 commit 7d705c2

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
3.0.1
2+
* Bug Fix: Error when StorePassword is set to no value
3+
14
3.0.0
25
* Add StorePassword as an option to allow clients to encrypt private keys with passwords in situations where their Citrix settings require a password protected key
36
* Add optional custom field to set timeout for login

CitrixAdcOrchestratorJobExtension/Keyfactor.Extensions.Orchestrator.CitricAdc.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
<PropertyGroup>
44
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
66
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
77
<ImplicitUsings>disable</ImplicitUsings>
88
</PropertyGroup>
99

1010
<ItemGroup>
1111
<PackageReference Include="Keyfactor.Common" Version="2.3.6" />
1212
<PackageReference Include="Keyfactor.Orchestrators.IOrchestratorJobExtensions" Version="0.7.0" />
13-
<PackageReference Include="Keyfactor.PKI" Version="8.2.2" />
13+
<PackageReference Include="Keyfactor.PKI" Version="8.3.1" />
1414
<PackageReference Include="System.Text.Encodings.Web" Version="6.0.0" />
1515

1616
<None Update="manifest.json">

CitrixAdcOrchestratorJobExtension/Management.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@
2020
using Microsoft.Extensions.Logging;
2121
using Newtonsoft.Json;
2222
using System.IO;
23-
using static Org.BouncyCastle.Math.EC.ECCurve;
24-
using com.citrix.netscaler.nitro.resource.config.pq;
2523
using System.Collections.Generic;
26-
using com.citrix.netscaler.nitro.resource.config.ssl;
2724

2825
namespace Keyfactor.Extensions.Orchestrator.CitricAdc
2926
{
@@ -52,7 +49,7 @@ public Management(IPAMSecretResolver resolver)
5249
private string ResolvePamField(string name, string value)
5350
{
5451
_logger.LogTrace($"Attempting to resolved PAM eligible field {name}");
55-
return resolver.Resolve(value);
52+
return string.IsNullOrEmpty(value) ? value : resolver.Resolve(value);
5653
}
5754

5855
public JobResult ProcessJob(ManagementJobConfiguration jobConfiguration)

0 commit comments

Comments
 (0)