Andreas
Andreas

Reputation: 1

Generate Files from Oracle with signature

I would like to sign a file with gpg when creating the file using plsql from an Oracle application. I've already googled a lot and found nothing that works for me. The signature must be read from another application. Therefor I have to use gpg for key generation and signation. Does anyone have any idea? Thanks Andreas

Upvotes: 0

Views: 315

Answers (1)

kfinity
kfinity

Reputation: 9091

There's a few different ways I can think of that you could do this:

  1. Purchase the commercial OraPGP library, which does exactly what you want.
  2. Do it in Java (using Bouncy Castle libraries or similar), and load that into your database using loadjava.
  3. Install GPG on your server, and execute it as an external OS command.

Finally, you could write your own OpenPGP implementation in PL/SQL.

Upvotes: 1

Related Questions