jruby-openssl 0.5.2 → 0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. data/History.txt +27 -0
  2. data/Manifest.txt +100 -0
  3. data/Rakefile +71 -0
  4. data/lib/jopenssl.jar +0 -0
  5. data/lib/jopenssl/version.rb +1 -1
  6. data/lib/openssl/bn.rb +1 -3
  7. data/lib/openssl/cipher.rb +15 -17
  8. data/lib/openssl/digest.rb +1 -3
  9. data/test/cert_with_ec_pk.cer +27 -0
  10. data/test/fixture/ca_path/72fa7371.0 +19 -0
  11. data/test/fixture/ca_path/verisign.pem +19 -0
  12. data/test/fixture/common.pem +48 -0
  13. data/test/fixture/max.pem +29 -0
  14. data/test/fixture/purpose/b70a5bc1.0 +24 -0
  15. data/test/fixture/purpose/ca/PASSWD_OF_CA_KEY_IS_1234 +0 -0
  16. data/test/fixture/purpose/ca/ca_config.rb +37 -0
  17. data/test/fixture/purpose/ca/cacert.pem +24 -0
  18. data/test/fixture/purpose/ca/newcerts/2_cert.pem +19 -0
  19. data/test/fixture/purpose/ca/newcerts/3_cert.pem +19 -0
  20. data/test/fixture/purpose/ca/private/cakeypair.pem +30 -0
  21. data/test/fixture/purpose/ca/serial +1 -0
  22. data/test/fixture/purpose/cacert.pem +24 -0
  23. data/test/fixture/purpose/scripts/gen_cert.rb +127 -0
  24. data/test/fixture/purpose/scripts/gen_csr.rb +50 -0
  25. data/test/fixture/purpose/scripts/init_ca.rb +66 -0
  26. data/test/fixture/purpose/sslclient.pem +19 -0
  27. data/test/fixture/purpose/sslclient/csr.pem +10 -0
  28. data/test/fixture/purpose/sslclient/keypair.pem +15 -0
  29. data/test/fixture/purpose/sslclient/sslclient.pem +19 -0
  30. data/test/fixture/purpose/sslserver.pem +19 -0
  31. data/test/fixture/purpose/sslserver/csr.pem +10 -0
  32. data/test/fixture/purpose/sslserver/keypair.pem +15 -0
  33. data/test/fixture/purpose/sslserver/sslserver.pem +19 -0
  34. data/test/fixture/verisign.pem +19 -0
  35. data/test/fixture/verisign_c3.pem +14 -0
  36. data/test/openssl/test_cipher.rb +22 -0
  37. data/test/openssl/test_pkcs7.rb +1 -0
  38. data/test/openssl/test_ssl.rb +2 -0
  39. data/test/openssl/test_x509ext.rb +21 -0
  40. data/test/openssl/test_x509name.rb +16 -0
  41. data/test/test_cipher.rb +20 -6
  42. data/test/test_integration.rb +43 -4
  43. data/test/test_parse_certificate.rb +20 -0
  44. data/test/test_x509store.rb +155 -0
  45. metadata +37 -3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-openssl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: "0.6"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ola Bini and JRuby contributors
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-20 00:00:00 -05:00
12
+ date: 2009-12-07 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -21,10 +21,13 @@ extensions: []
21
21
 
22
22
  extra_rdoc_files:
23
23
  - History.txt
24
+ - Manifest.txt
24
25
  - README.txt
25
26
  - License.txt
26
27
  files:
28
+ - Rakefile
27
29
  - History.txt
30
+ - Manifest.txt
28
31
  - README.txt
29
32
  - License.txt
30
33
  - lib/jopenssl.jar
@@ -40,6 +43,7 @@ files:
40
43
  - lib/openssl/dummyssl.rb
41
44
  - lib/openssl/ssl.rb
42
45
  - lib/openssl/x509.rb
46
+ - test/cert_with_ec_pk.cer
43
47
  - test/pkcs7_mime_enveloped.message
44
48
  - test/pkcs7_mime_signed.message
45
49
  - test/pkcs7_multipart_signed.message
@@ -53,11 +57,39 @@ files:
53
57
  - test/test_java_smime.rb
54
58
  - test/test_openssl.rb
55
59
  - test/test_openssl_x509.rb
60
+ - test/test_parse_certificate.rb
56
61
  - test/test_pkey.rb
62
+ - test/test_x509store.rb
57
63
  - test/ut_eof.rb
58
64
  - test/fixture/cacert.pem
59
65
  - test/fixture/cert_localhost.pem
66
+ - test/fixture/common.pem
60
67
  - test/fixture/localhost_keypair.pem
68
+ - test/fixture/max.pem
69
+ - test/fixture/verisign.pem
70
+ - test/fixture/verisign_c3.pem
71
+ - test/fixture/ca_path/72fa7371.0
72
+ - test/fixture/ca_path/verisign.pem
73
+ - test/fixture/purpose/b70a5bc1.0
74
+ - test/fixture/purpose/cacert.pem
75
+ - test/fixture/purpose/sslclient.pem
76
+ - test/fixture/purpose/sslserver.pem
77
+ - test/fixture/purpose/ca/ca_config.rb
78
+ - test/fixture/purpose/ca/cacert.pem
79
+ - test/fixture/purpose/ca/PASSWD_OF_CA_KEY_IS_1234
80
+ - test/fixture/purpose/ca/serial
81
+ - test/fixture/purpose/ca/newcerts/2_cert.pem
82
+ - test/fixture/purpose/ca/newcerts/3_cert.pem
83
+ - test/fixture/purpose/ca/private/cakeypair.pem
84
+ - test/fixture/purpose/scripts/gen_cert.rb
85
+ - test/fixture/purpose/scripts/gen_csr.rb
86
+ - test/fixture/purpose/scripts/init_ca.rb
87
+ - test/fixture/purpose/sslclient/csr.pem
88
+ - test/fixture/purpose/sslclient/keypair.pem
89
+ - test/fixture/purpose/sslclient/sslclient.pem
90
+ - test/fixture/purpose/sslserver/csr.pem
91
+ - test/fixture/purpose/sslserver/keypair.pem
92
+ - test/fixture/purpose/sslserver/sslserver.pem
61
93
  - test/openssl/ssl_server.rb
62
94
  - test/openssl/test_asn1.rb
63
95
  - test/openssl/test_cipher.rb
@@ -104,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
136
  requirements: []
105
137
 
106
138
  rubyforge_project: jruby-extras
107
- rubygems_version: 1.3.3
139
+ rubygems_version: 1.3.5
108
140
  signing_key:
109
141
  specification_version: 3
110
142
  summary: OpenSSL add-on for JRuby
@@ -119,4 +151,6 @@ test_files:
119
151
  - test/test_java_smime.rb
120
152
  - test/test_openssl.rb
121
153
  - test/test_openssl_x509.rb
154
+ - test/test_parse_certificate.rb
122
155
  - test/test_pkey.rb
156
+ - test/test_x509store.rb