Viewing profile — deidei
deidei
HN member- Joined
- Wed, Jun 08, 2022, 9:12 PM UTC
- HN karma
- 72
- Public activity
- 47 items
- HN profile
- View on Hacker News ↗
About deidei
No profile information was provided.
Recent public activity
-
comment
Comment #40616501
> reports that said the app will require a confirmation of identity, such as a driver’s license, your tax records to prove income and a signed form that says you are ready to get m…
- story
-
comment
Comment #38903849
yes, it is a typo from the independent. > Its driving my insane. Off topic, but you made another typo here lol
-
comment
Comment #38903830
> The Royal Navy seems to advertise all levels of jobs on LinkedIn - and wider. Wasn't aware of this. Can you please link to some more similar job ads? Is this the standard in othe…
-
comment
Comment #38891602
> why would it be bad to advertise the position? Not an expert but from what I understand a position of this level should ideally be filled internally by reassigning or promoting a…
- story
-
comment
Comment #37241718
Congrats to the team at ISRO! It makes me wonder, what is it that ISRO does differently than most other government agencies in India that makes them so efficient.
- story
-
comment
Comment #35834343
There you go https://archive.ph/fmQR9 Sorry I should probably have put the non-paywalled link in the submission
- story
- story
- story
- story
-
comment
Comment #34647178
This is exactly what I was looking for! Thank you so much for the help.
-
comment
Comment #34640053
>If your user can provide an encryption key, he can as well provide the token or whatever directly. Yeah that makes sense, thanks for pointing that out. I'm just brainstorming at t…
-
comment
Comment #34639233
I was checking out the docs for that and a few other similar solutions too. This is very true. Most of the secret managers are primarily intended for config-like data.
-
comment
Comment #34638768
Thanks for the help. So that two options that I was thinking about - Option A 1. My user creates an secure (with API keys or some other method) API endpoint to provide the Client s…
-
comment
Comment #34638747
>What are you going to do to keep the key safe in the scenarios of your threat model where an adversary can access the DB contents? One option that I have been thinking is - 1. Whe…
-
comment
Comment #34638723
I'm using PostgreSQL and it has a built in encryption library (pgcrypto), so I'll probably use that.
-
comment
Comment #34633492
That does make sense, thanks. Do you store all the secrets using the Key Vault?
-
comment
Comment #34633447
It would be better to store all the Client Secrets in such a Secrets Manager right? Or should I create an encryption key per user and store that in the Secrets Manager?
-
comment
Comment #34632969
Hey, thanks for the reply. My application is a SaaS that helps developers add integrations (with apps like Slack, Linear etc.) to their apps really quick. What is the best way to s…
-
comment
Comment #34632945
Thanks for the reply. I'm fully aware of the dangers of rolling my own and want to avoid it at all costs. Is using a battle-tested Node.js library or the database's own API for enc…
-
comment
Comment #34632914
>Specific answers to your questions will depend on your application and use cases (local network? global website? credit card data? health data? etc...) Thank you so much for the r…
-
story
Ask HN: How to encrypt data in a SQL database?
Hey HN, I will need to store some sensitive data (API keys, Client Secrets) of my customers in my DB. I was wondering if anyone could help me with these questions. 1. What are the …