Sha256: a193ef239da3b88baee00c43c45c3113ec23f2d7779c823c8741ec673ac192d8
Contents?: true
Size: 1.39 KB
Versions: 5
Compression:
Stored size: 1.39 KB
Contents
require 'active_support/all' require 'active_model' require 'xmlenc/version' require 'openssl' require 'base64' require 'nokogiri' module Xmlenc NAMESPACES = { :xenc => 'http://www.w3.org/2001/04/xmlenc#', :ds => 'http://www.w3.org/2000/09/xmldsig#' } class UnsupportedError < StandardError end class UnparseableMessage < StandardError end module Builder autoload :Base, 'xmlenc/builder/base' autoload :EncryptedData, 'xmlenc/builder/encrypted_data' autoload :EncryptionMethod, 'xmlenc/builder/encryption_method' autoload :EncryptedKey, 'xmlenc/builder/encrypted_key' autoload :KeyInfo, 'xmlenc/builder/key_info' autoload :CipherData, 'xmlenc/builder/cipher_data' autoload :DigestMethod, 'xmlenc/builder/digest_method' autoload :ReferenceList, 'xmlenc/builder/reference_list' autoload :DataReference, 'xmlenc/builder/data_reference' module ComplexTypes autoload :EncryptedType, 'xmlenc/builder/complex_types/encrypted_type' end end module Algorithms autoload :RSA15, 'xmlenc/algorithms/rsa_15' autoload :RsaOaepMgf1p, 'xmlenc/algorithms/rsa_oaep_mgf1p' autoload :DES3CBC, 'xmlenc/algorithms/des3_cbc' autoload :AESCBC, 'xmlenc/algorithms/aes_cbc' end autoload :EncryptedDocument, 'xmlenc/encrypted_document' autoload :EncryptedData, 'xmlenc/encrypted_data' autoload :EncryptedKey, 'xmlenc/encrypted_key' end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
xmlenc-0.3.0 | lib/xmlenc.rb |
xmlenc-0.2.1 | lib/xmlenc.rb |
xmlenc-0.2.0 | lib/xmlenc.rb |
xmlenc-0.1.7 | lib/xmlenc.rb |
xmlenc-0.1.6 | lib/xmlenc.rb |