开发者

How to digitally sign XML document using Oracle 9i PL/SQL

开发者 https://www.devze.com 2023-01-01 11:30 出处:网络
Let\'s say we have a simple XML document (doc.xml) like this: <?xml version=\"1.0\" encoding=\"UTF-8\"?>

Let's say we have a simple XML document (doc.xml) like this:

<?xml version="1.0" encoding="UTF-8"?>
<Envelope xmlns="http://www.someexample.com/examples">
  <Salutation Id="test">
    Welcome!
  </Salutation>
</Envelope>

And a certificate f开发者_运维问答ile:test.p12

How to make a solution using Oracle 9i PL/SQL that digitally signs XML document according to http://www.w3.org/2000/09/xmldsig#

Any Digital Signature form (e.g. Enveloped) and method (e.g. RSAwithSHA1) example would be great.


You have to use Java Digital XML Signature API and a Java stored procedure for this.

0

精彩评论

暂无评论...
验证码 换一张
取 消