Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRufino committed Nov 6, 2023
1 parent 3f761f9 commit 3544696
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/issue-software-certificate-response.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,14 +209,14 @@ class IssueSoftwareCertificateResponse {
toModel() {
return {
model: this._model,
certificateDer: this_certificateDer,
certificatePem: this_certificatePem,
publicKeyDer: this_publicKeyDer,
publicKeyPem: this_publicKeyPem,
privateKeyPkcs8Der: this_privateKeyPkcs8Der,
privateKeyPkcs8Pem: this_privateKeyPkcs8Pem,
privateKeyPkcs12Der: this_privateKeyPkcs12Der,
privateKeyPkcs12Pem: this_privateKeyPkcs12Pem
certificateDer: this._certificateDer,
certificatePem: this._certificatePem,
publicKeyDer: this._publicKeyDer,
publicKeyPem: this._publicKeyPem,
privateKeyPkcs8Der: this._privateKeyPkcs8Der,
privateKeyPkcs8Pem: this._privateKeyPkcs8Pem,
privateKeyPkcs12Der: this._privateKeyPkcs12Der,
privateKeyPkcs12Pem: this._privateKeyPkcs12Pem
};
}
}
Expand Down

0 comments on commit 3544696

Please sign in to comment.