-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Modified RFJKS store type support java keystores of both PKCS12 and JKS - Added support for OpenSSH private keys for SSH authentication - Bug fix for orchestrators installed on Windows 2016 - Bug Fix: Supplied Linux user needing password reset could cause orchestrator locking. - Bug Fix: Not supplying group for Linux File Owner on Store Creation caused the supplied owner to erroneously be used as the group for the newly create certificate store file. - Updgraded Nuget packages for BouncyCastle and Renci.SSH.Net
- Loading branch information
Showing
19 changed files
with
501 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2021 Keyfactor | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
// and limitations under the License. | ||
|
||
using Keyfactor.Orchestrators.Extensions.Interfaces; | ||
|
||
namespace Keyfactor.Extensions.Orchestrator.RemoteFile.DER | ||
{ | ||
public class Reenrollment : ReenrollmentBase | ||
{ | ||
internal override ICertificateStoreSerializer GetCertificateStoreSerializer(string storeProperties) | ||
{ | ||
return new DERCertificateStoreSerializer(storeProperties); | ||
} | ||
|
||
public Reenrollment(IPAMSecretResolver resolver) | ||
{ | ||
_resolver = resolver; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2021 Keyfactor | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
// and limitations under the License. | ||
|
||
using Keyfactor.Orchestrators.Extensions.Interfaces; | ||
|
||
namespace Keyfactor.Extensions.Orchestrator.RemoteFile.JKS | ||
{ | ||
public class Reenrollment : ReenrollmentBase | ||
{ | ||
internal override ICertificateStoreSerializer GetCertificateStoreSerializer(string storeProperties) | ||
{ | ||
return new JKSCertificateStoreSerializer(storeProperties); | ||
} | ||
|
||
public Reenrollment(IPAMSecretResolver resolver) | ||
{ | ||
_resolver = resolver; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2021 Keyfactor | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
// and limitations under the License. | ||
|
||
using Keyfactor.Orchestrators.Extensions.Interfaces; | ||
|
||
namespace Keyfactor.Extensions.Orchestrator.RemoteFile.KDB | ||
{ | ||
public class Reenrollment : ReenrollmentBase | ||
{ | ||
internal override ICertificateStoreSerializer GetCertificateStoreSerializer(string storeProperties) | ||
{ | ||
return new KDBCertificateStoreSerializer(storeProperties); | ||
} | ||
|
||
public Reenrollment(IPAMSecretResolver resolver) | ||
{ | ||
_resolver = resolver; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright 2021 Keyfactor | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
// and limitations under the License. | ||
|
||
using Keyfactor.Extensions.Orchestrator.RemoteFile.KDB; | ||
using Keyfactor.Orchestrators.Extensions.Interfaces; | ||
|
||
namespace Keyfactor.Extensions.Orchestrator.RemoteFile.OraWlt | ||
{ | ||
public class Reenrollment : ReenrollmentBase | ||
{ | ||
internal override ICertificateStoreSerializer GetCertificateStoreSerializer(string storeProperties) | ||
{ | ||
return new OraWltCertificateStoreSerializer(storeProperties); | ||
} | ||
|
||
public Reenrollment(IPAMSecretResolver resolver) | ||
{ | ||
_resolver = resolver; | ||
} | ||
} | ||
} |
Oops, something went wrong.