29
submitted 1 year ago by [email protected] to c/[email protected]

I have an implementation for an internal API, the requirement is to implement some sort of basic authentication instead of oauth (generating a token).

Do you think there's any difference between using just an API key vs using a client id + secret?
For what I see it'd be just like saying "using a password" vs "using a user and a password".

you are viewing a single comment's thread
view the rest of the comments
[-] [email protected] 1 points 1 year ago

You got me thinking in something more, are API keys stored in plain text in DB? Otherwise I don't see a way to quickly know it's valid, I'd have to validate it against all the hashes in the DB.
With client id it'd be easy to just validate the secret against a single hash for that user.

[-] [email protected] 4 points 1 year ago

Its never really a good approach to store secrets in plain text. I don't see how that would be more expensive for your database than validating clientId + secret.

[-] [email protected] 2 points 1 year ago

There are lots of solutions out there for "secrets management." If you're using Kubernetes, there are some which integrate with Kubernetes. I use Spring Cloud Config where I work and it supports storing encrypted values in the configuration. What solution would be best for you depends on your software stack. (And I don't have a ton of experience with most options.) But some googling could get you more answers.

this post was submitted on 21 Aug 2023
29 points (100.0% liked)

Programming

17024 readers
298 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 1 year ago
MODERATORS