1 / 10

Java WebServices Java XML Signature API

Java WebServices Java XML Signature API. Ing. Lennon Shimokawa Miyashiro http://lshimokawa.net lshimokawa@gmail.com. Firma digital.

maxine
Download Presentation

Java WebServices Java XML Signature API

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Java WebServicesJava XML Signature API Ing. Lennon Shimokawa Miyashiro http://lshimokawa.net lshimokawa@gmail.com

  2. Firma digital • La firma digital hace referencia, en la transmisión de mensajes telemáticos y en la gestión de documentos electrónicos, a un método criptográfico que asocia la identidad de una persona o de un equipo informático al mensaje o documento. • Puede asegurar la integridad del documento o mensaje. (Wikipedia)

  3. Algoritmos • DSA: Digital Signature Algorithm • Solo para firmar • Estándar del gobierno de USA • RSA: public key cryptography • Firma y encripta • Basado en que no hay maneras rápidas conocidas de factorizar un número grande en sus factores primos utilizando computadoras tradicionales

  4. Firma digital

  5. Java XML Signature API • Generar y validar firmas digitales en XML • Puede ser aplicado a data de cualquier tipo, XML o binario • La firma resultante es representado en un XML • JSR-105

  6. API • javax.xml.crypto • javax.xml.crypto.dsig • javax.xml.crypto.dsig.keyinfo • javax.xml.crypto.dsig.spec • javax.xml.crypto.dom • javax.xml.crypto.dsig.dom

  7. Seguridad • Asegurar los datos • Integridad • Autenticación del mensaje • Autenticación del firmante

  8. XML Security Stack

  9. Generar firmas • Instanciar el documento a firmar • Generar la llave pública • Crear el contexto de la firma • Generar la firma digital • Guardar el documento firmado

  10. Validar firmas • Instanciar el documento que contiene la firma • Especificar el elemento de firma a validar • Crear el contexto de validación • Unmarshaling de la firma • Validación de la firma

More Related