lib/ezcrypto.rb in ezcrypto-0.1.1 vs lib/ezcrypto.rb in ezcrypto-0.2
- old
+ new
@@ -1,11 +1,11 @@
require 'openssl'
require 'digest/sha2'
require 'digest/sha1'
require 'base64'
-module EzCrypto
+module EzCrypto #:nodoc:
=begin rdoc
The Key is the only class you need to understand for simple use.
@@ -20,11 +20,11 @@
Key.with_password @pwd,@salt,:algorithm=>"aes256"
== License
-Action Web Service is released under the MIT license.
+ActiveCrypto and EzCrypto are released under the MIT license.
== Support
To contact the author, send mail to pelleb@gmail.com
@@ -193,11 +193,11 @@
You probably should be using the Key class instead.
Warning! The interface may change.
=end
- class CipherWrapper
+ class CipherWrapper #:nodoc:
=begin rdoc
=end
def initialize(key,target,mode,algorithm)
@@ -260,11 +260,11 @@
You probably should be using Key instead.
Warning! The interface may change.
=end
- class Encrypter<EzCrypto::CipherWrapper
+ class Encrypter<EzCrypto::CipherWrapper #:nodoc:
=begin rdoc
=end
def initialize(key,target="",algorithm="aes-128-cbc")
@@ -284,10 +284,10 @@
You probably should be using Key instead.
Warning! The interface may change.
=end
- class Decrypter<EzCrypto::CipherWrapper
+ class Decrypter<EzCrypto::CipherWrapper #:nodoc:
=begin rdoc
=end
def initialize(key,target="",algorithm="aes-128-cbc")
super(key,target,false,algorithm)