Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
gadphly committed Aug 18, 2023
2 parents 959de46 + 70e5458 commit 8d3ed24
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ let decoded = try decoder.decode(TrifleKeyHandle.self, from: jsonKeyHandle)
// Check the validity of loaded key
let valid = trifle.isValid(keyHandle: keyHandle)

// Destroy key that is no longer in use or is invalid
let status = trifle.delete(keyHandle: keyHandle)

// Destroy key that is no longer in use or is invalid
let status = trifle.delete(keyHandle: keyHandle)

Expand All @@ -57,7 +60,6 @@ let response: [Data]
// Iterate over each Data to convert to TrifleCertificate
let certs = try response.map({ try TrifleCertificate.deserialize(data: $0) })


// certs is an array of certificates where [0] will be device certificate
// and the rest of the elements will be intermediate chain.

Expand Down

0 comments on commit 8d3ed24

Please sign in to comment.