Skip to content

Commit

Permalink
Refactor. updated time zone format
Browse files Browse the repository at this point in the history
  • Loading branch information
SanoferSameera committed Mar 18, 2024
1 parent a770692 commit 2142ba3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- changed-time-format
- 'release-*'
tags:
- '[0-9]+.[0-9]+.[0-9]+'
Expand Down
2 changes: 1 addition & 1 deletion src/In.ProjectEKA.HipService/DataFlow/DataEntryFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public virtual Option<EncryptedEntries> Process(Entries entries,
});
}

var keyStructure = new KeyStructure(DateTime.Now.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ"),
var keyStructure = new KeyStructure(DateTime.Now.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ss.SSSZ"),
dataRequestKeyMaterial.DhPublicKey.Parameters, EncryptorHelper.GetPublicKey(keyPair));
var keyMaterial = new KeyMaterial(dataRequestKeyMaterial.CryptoAlg,
dataRequestKeyMaterial.Curve,
Expand Down

0 comments on commit 2142ba3

Please sign in to comment.