On Tuesday, May 26, 2020, Marc Munro <m...@bloodnok.com> wrote: > I need to be able to cryptographically sign objects in my database > using a public key scheme. > > Any other options? Am I missing something? >
This feels like it should be an application (middleware...) concern, not the database proper. i.e., store previously signed data into a normal text or bytea field. That said there is: https://www.postgresql.org/docs/12/pgcrypto.html#id-1.11.7.34.7 David J.