Skip to content

Commit

Permalink
update verify key to us Base64 encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
John Szinger committed Dec 19, 2023
1 parent b6e5a4c commit d9178d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Each agent will go through specific onboarding steps outlined XXX here, and once
{
"id": "unique identifier matching [A-Z_]+ regular expression",
"name": "Consumer Legible Agent App Name",
"verify_key": "Hex encoded Libsodium public verifying key for signed requests",
"verify_key": "Base64 encoded Libsodium public verifying key for signed requests",
"web_url": "business's homepage",
"technical_contact": "an email contact for the techical integration",
"business_contact": "an email address for contacting a person within the business who is knowledgeable about the privacy program and DRP integration",
Expand Down
2 changes: 1 addition & 1 deletion publish_script/agent.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"name": { "type": "string" },
"verify_key": {
"type": "string",
"pattern": "[A-Fa-f0-9]+"
"pattern": "[a-zA-Z0-9\-_]+"
},
"web_url": {
"type": "string",
Expand Down

0 comments on commit d9178d9

Please sign in to comment.