this post was submitted on 30 Nov 2024
123 points (99.2% liked)

Programming

17655 readers
235 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
 

Many might've seen the Australian ban of social media for <16 y.o with no idea of how to implement it. There have been mentions of "double blind age verification", but I can't find any information on it.

Out of curiosity, how would you implement this with privacy in mind if you really had to?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 2 weeks ago (2 children)

Could it be maybe a token signed by the verifying party living permanently on your computer (like cookie), and websites can request permission to query it to verify the age?

[–] [email protected] 4 points 2 weeks ago (1 children)

Since age tends to not decrease, that may make sense: once you reach 18 you get a signed token you can use forever.

Your token might be used by someone else, though

[–] [email protected] 5 points 2 weeks ago (1 children)

Your token might be used by someone else, though

Yeah. I feel like that cool bad influence not-actually-my-uncle is gonna publish their porn access token everywhere.

[–] [email protected] 4 points 2 weeks ago

Porn Access Token lmao

[–] chaospatterns 3 points 2 weeks ago

The hard part is browsers. Cookies and local storage are limited by the origin URL. You need it explicitly set on the domains you intend to visit, but those domains don't know your age. The one that knows the age is the identity provider, but it can't set it for all domains. There are other techniques that you could use, like a smart card combined with a browser extension to do local based user info attestation, but those are difficult to manage at a nation scale and I suspect people will struggle with them, though there are some countries that do have national smart cards (e.g. Estonia.)