Skip to content

Commit

Permalink
adds minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-burns committed Jul 24, 2024
1 parent aa225af commit 1ca22eb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions hugo-gh/content/tutorials/Golang-WASM-SDK.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ newKeyReq(newName, "doh.zenr.io").then(() => {
// Key: Public Key in DNS Resource Record presentation format
// (both key values are in nspdate / dnssec-keygen compatible format)
//
// Example: listKeys()
// display a list of the Keyname of every key in the keystore
//
function listKeys() {
const div = document.getElementById("keystore-keynames")
if (div.children.length > 0) {
Expand Down Expand Up @@ -58,9 +61,10 @@ function listKeys() {
// Name: Key pair name (as filename prefix)
// Key: Public Key in DNS Resource Record presentation format
// (both key values are in nspdate / dnssec-keygen compatible format)
// getKeysForDomain()
// list key in the keystore
// for which a given domain is equal to or a subdomain of the key's
// Example: getKeysForDomain()
// display a list key in the keystore
// for which a given domain is equal to or is a subdomain of the key's
// DNS Resource Record FQDN.
//
function getKeysForDomain() {
Expand Down

0 comments on commit 1ca22eb

Please sign in to comment.