Aidan

Results 21 comments of Aidan

The edoc documents can be tested on https://www.eparaksts.lv/en/. Currently not passing. Marking a draft

Remaining issues, ``` 11.03.2021 15:45:34.066 WARN [main] [o.a.x.s.signature.XMLSignature.checkSignatureValue:775] - Signature verification failed. 11.03.2021 15:45:34.067 WARN [main] [e.e.e.d.x.validation.XAdESSignature.checkSignatureIntegrity:741] - Determining signing certificate from certificate candidates list failed: [Certificate #1: Signature verification...

I merged this into https://github.com/russellhaering/goxmldsig/pull/69 because I'll need the changes

@russellhaering Do you have another implementation in mind? I am trying to implement XAdES and I believe I am having trouble with the Canonicalizations because digests aren't matching.

Could you post your benchmark code?

For Android, need bindings to https://developer.android.com/training/sign-in/biometric-auth

Hey, I have been looking at this too. I looked at supporting casbin as the authorization provider, but then I thought that the only safe way to do this is...

Without using Postgres roles, I believe such an endpoint could easily bypass your current authorization scheme. See my comment in https://github.com/prest/prest/issues/468#issuecomment-731658923. For example, ``` ENDPOINT: /_QUERY/ METHOD: POST BODY: {"query":...

Still seems very dangerous without using Postgres roles to control possible actions. Basically anyone who can execute a query immediately has maximum level permissions and they can create admin users...

I really don't think there is any alternative to Postgres Roles Just send this over in a single query. ``` SELECT * FROM table; DROP TABLE table; ``` You could...