jruby-openssl 0.9.5-java → 0.9.6-java
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.
- checksums.yaml +4 -4
- data/History.md +279 -0
- data/LICENSE.txt +37 -0
- data/README.md +55 -0
- data/Rakefile +13 -0
- data/lib/jopenssl.jar +0 -0
- data/lib/jopenssl/load.rb +13 -10
- data/lib/jopenssl/version.rb +2 -2
- data/lib/jopenssl18/openssl/bn.rb +0 -10
- data/lib/jopenssl18/openssl/cipher.rb +1 -38
- data/lib/jopenssl18/openssl/digest.rb +0 -29
- data/lib/jopenssl18/openssl/ssl-internal.rb +5 -29
- data/lib/jopenssl18/openssl/x509-internal.rb +0 -43
- data/lib/jopenssl19/openssl.rb +0 -1
- data/lib/jopenssl19/openssl/bn.rb +4 -10
- data/lib/jopenssl19/openssl/cipher.rb +4 -41
- data/lib/jopenssl19/openssl/digest.rb +3 -43
- data/lib/jopenssl19/openssl/ssl-internal.rb +5 -27
- data/lib/jopenssl19/openssl/x509-internal.rb +0 -43
- data/lib/jopenssl21/openssl.rb +0 -1
- data/lib/jopenssl21/openssl/bn.rb +0 -6
- data/lib/jopenssl21/openssl/cipher.rb +1 -38
- data/lib/jopenssl21/openssl/digest.rb +1 -41
- data/lib/jopenssl21/openssl/ssl.rb +5 -37
- data/lib/jopenssl21/openssl/x509.rb +0 -43
- data/lib/org/bouncycastle/bcpkix-jdk15on/1.49/bcpkix-jdk15on-1.49.jar +0 -0
- data/lib/org/bouncycastle/bcprov-jdk15on/1.49/bcprov-jdk15on-1.49.jar +0 -0
- metadata +76 -46
- data/History.txt +0 -218
- data/License.txt +0 -30
- data/Mavenfile +0 -44
- data/README.txt +0 -13
- data/lib/org/bouncycastle/bcpkix-jdk15on/1.47/bcpkix-jdk15on-1.47.jar +0 -0
- data/lib/org/bouncycastle/bcprov-jdk15on/1.47/bcprov-jdk15on-1.47.jar +0 -0
data/License.txt
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
JRuby-OpenSSL is distributed under the same license as JRuby (http://www.jruby.org/).
|
2
|
-
|
3
|
-
Version: EPL 1.0/GPL 2.0/LGPL 2.1
|
4
|
-
|
5
|
-
The contents of this file are subject to the Common Public
|
6
|
-
License Version 1.0 (the "License"); you may not use this file
|
7
|
-
except in compliance with the License. You may obtain a copy of
|
8
|
-
the License at http://www.eclipse.org/legal/cpl-v10.html
|
9
|
-
|
10
|
-
Software distributed under the License is distributed on an "AS
|
11
|
-
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
12
|
-
implied. See the License for the specific language governing
|
13
|
-
rights and limitations under the License.
|
14
|
-
|
15
|
-
Copyright (C) 2007 Ola Bini <ola.bini@gmail.com>
|
16
|
-
|
17
|
-
Alternatively, the contents of this file may be used under the terms of
|
18
|
-
either of the GNU General Public License Version 2 or later (the "GPL"),
|
19
|
-
or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
20
|
-
in which case the provisions of the GPL or the LGPL are applicable instead
|
21
|
-
of those above. If you wish to allow use of your version of this file only
|
22
|
-
under the terms of either the GPL or the LGPL, and not to allow others to
|
23
|
-
use your version of this file under the terms of the EPL, indicate your
|
24
|
-
decision by deleting the provisions above and replace them with the notice
|
25
|
-
and other provisions required by the GPL or the LGPL. If you do not delete
|
26
|
-
the provisions above, a recipient may use your version of this file under
|
27
|
-
the terms of any one of the EPL, the GPL or the LGPL.
|
28
|
-
|
29
|
-
JRuby-OpenSSL includes software by the Legion of the Bouncy Castle
|
30
|
-
(http://bouncycastle.org/license.html).
|
data/Mavenfile
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
#-*- mode: ruby -*-
|
2
|
-
|
3
|
-
snapshot_repository :id => 'sonatype', :url => 'https://oss.sonatype.org/content/repositories/snapshots'
|
4
|
-
|
5
|
-
gemspec :jar => 'jopenssl', :include_jars => true
|
6
|
-
|
7
|
-
if model.version.to_s.match /[a-zA-Z]/
|
8
|
-
model.group_id = 'org.jruby.gems'
|
9
|
-
|
10
|
-
model.version = model.version + '-SNAPSHOT'
|
11
|
-
plugin :deploy do
|
12
|
-
execute_goals( :deploy,
|
13
|
-
:skip => false,
|
14
|
-
:altDeploymentRepository => 'sonatype-nexus-snapshots::default::https://oss.sonatype.org/content/repositories/snapshots/' )
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
plugin( :compiler, :target => '1.6', :source => '1.6', :debug => true, :verbose => false, :showWarnings => true, :showDeprecation => true )
|
19
|
-
|
20
|
-
jruby_plugin! :gem do
|
21
|
-
# avoid adding this not yet built openssl to the load_path
|
22
|
-
# when installing dependent gems
|
23
|
-
execute_goal :initialize, :lib => 'non-existing'
|
24
|
-
execute_goals :id => 'default-push', :skip => true
|
25
|
-
end
|
26
|
-
|
27
|
-
# you can use -Djruby.version=1.6.8 to pick a jruby version
|
28
|
-
# TODO use 1.6.8 and let the gem-maven-plugin pick the right version
|
29
|
-
properties 'jruby.version' => '1.7.12'
|
30
|
-
# we need the jruby API here, the version should be less important here
|
31
|
-
jar 'org.jruby:jruby-core', '${jruby.version}', :scope => :provided
|
32
|
-
# this artifact is needed to run the packaging at the end of the build
|
33
|
-
jar 'org.jruby:jruby-stdlib', '${jruby.version}', :scope => :provided
|
34
|
-
|
35
|
-
scope :test do
|
36
|
-
jar 'junit:junit:4.11'
|
37
|
-
end
|
38
|
-
|
39
|
-
properties( 'gem.home' => '../target/rubygems',
|
40
|
-
'gem.path' => '${gem.home}',
|
41
|
-
'tesla.dump.pom' => 'pom.xml',
|
42
|
-
'tesla.dump.readonly' => true )
|
43
|
-
|
44
|
-
# vim: syntax=Ruby
|
data/README.txt
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
= JRuby-OpenSSL
|
2
|
-
|
3
|
-
* https://github.com/jruby/jruby/tree/master/maven/gems/jruby-openssl
|
4
|
-
|
5
|
-
== DESCRIPTION:
|
6
|
-
|
7
|
-
JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.
|
8
|
-
|
9
|
-
Please report bugs and incompatibilities (preferably with testcases) to either the JRuby
|
10
|
-
mailing list [1] or the JRuby bug tracker [2].
|
11
|
-
|
12
|
-
[1]: http://xircles.codehaus.org/projects/jruby/lists
|
13
|
-
[2]: https://github.com/jruby/jruby/issues
|
Binary file
|
Binary file
|