ezcrypto 0.6 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/lib/ezsig.rb +1 -1
  3. data/rakefile +1 -1
  4. metadata +2 -2
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 0.6.1 August 14th, 2006 Subject!=Issuer bug fix
2
+
3
+ I discovered a not so little bug in the certificate handling. The issuer method of the Certificate mistakenly returned the subject.
4
+
1
5
  0.6 August 10th, 2006 Certified PKI release
2
6
 
3
7
  Finally I have had a good reason http://www.tractis.com to add Digital Signature support to EzCrypto. We have support for RSA and DSA private and public keys as well as basic X509 certificate support. All in typical EzCrypto simple Ruby like methods.
@@ -242,7 +242,7 @@ module EzCrypto
242
242
  Returns a Name object containt the issuer of the certificate.
243
243
  =end
244
244
  def issuer
245
- @issuer=EzCrypto::Name.new(@cert.subject) unless @issuer
245
+ @issuer=EzCrypto::Name.new(@cert.issuer) unless @issuer
246
246
  @issuer
247
247
  end
248
248
 
data/rakefile CHANGED
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
8
8
 
9
9
  PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
10
10
  PKG_NAME = 'ezcrypto'
11
- PKG_VERSION = '0.6' + PKG_BUILD
11
+ PKG_VERSION = '0.6.1' + PKG_BUILD
12
12
  PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
13
13
 
14
14
  RELEASE_NAME = "REL #{PKG_VERSION}"
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: ezcrypto
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.6"
7
- date: 2006-08-09 00:00:00 -03:00
6
+ version: 0.6.1
7
+ date: 2006-08-14 00:00:00 -03:00
8
8
  summary: Simplified encryption library.
9
9
  require_paths:
10
10
  - lib