Skip to content

Commit

Permalink
Merge pull request #12 from consumer-reports-innovation-lab/verifykey…
Browse files Browse the repository at this point in the history
…_base64

update verify key to us Base64 encoding
  • Loading branch information
rrix authored Dec 19, 2023
2 parents b6e5a4c + b0c56f6 commit 767f5df
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 767f5df

Please sign in to comment.