Sha256: 9eb15ce597540769fa73a8e5fe04f2533a5863ec1cf3f19c65a1776a4af25386
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
#ifndef XMLSECRB_H #define XMLSECRB_H #include <ruby.h> #include <libxml/tree.h> #include <libxml/xmlmemory.h> #include <libxml/parser.h> #include <libxml/xmlstring.h> #include <libxslt/xslt.h> #include <xmlsec/xmlsec.h> #include <xmlsec/xmltree.h> #include <xmlsec/xmldsig.h> #include <xmlsec/xmlenc.h> #include <xmlsec/templates.h> #include <xmlsec/crypto.h> #include <xmlsec/dl.h> VALUE sign_with_key(VALUE self, VALUE rb_key_name, VALUE rb_rsa_key); VALUE sign_with_certificate(VALUE self, VALUE rb_key_name, VALUE rb_rsa_key, VALUE rb_cert); VALUE verify_signature_with_rsa_key(VALUE self, VALUE rb_rsa_key); VALUE verify_signature_with_named_keys(VALUE self, VALUE rb_keys); VALUE verify_signature_with_certificates(VALUE self, VALUE rb_certs); VALUE encrypt_with_key(VALUE self, VALUE rb_key_name, VALUE rb_key); VALUE decrypt_with_key(VALUE self, VALUE rb_key_name, VALUE rb_key); void Init_Nokogiri_ext(void); extern VALUE rb_cNokogiri_XML_Document; extern VALUE rb_eSigningError; extern VALUE rb_eVerificationError; extern VALUE rb_eKeystoreError; extern VALUE rb_eEncryptionError; extern VALUE rb_eDecryptionError; #endif // XMLSECRB_H
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nokogiri-xmlsec-0.0.3 | ext/nokogiri_ext_xmlsec/xmlsecrb.h |