commit:     4200350489f1b84f900ac16d48b02686d5f6fcfe
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail 
<DOT> com>
AuthorDate: Sat Jan 21 18:39:46 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan 26 22:36:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42003504

net-p2p/vuze: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/3583

 .../files/vuze-5.3.0.0-use-jdk-cipher-only.patch   | 41 ----------------------
 1 file changed, 41 deletions(-)

diff --git a/net-p2p/vuze/files/vuze-5.3.0.0-use-jdk-cipher-only.patch 
b/net-p2p/vuze/files/vuze-5.3.0.0-use-jdk-cipher-only.patch
deleted file mode 100644
index 596bd82..00000000
--- a/net-p2p/vuze/files/vuze-5.3.0.0-use-jdk-cipher-only.patch
+++ /dev/null
@@ -1,41 +0,0 @@
---- 
a/com/aelitis/azureus/core/clientmessageservice/secure/impl/SecureMessageServiceClientHelper.java
-+++ 
b/com/aelitis/azureus/core/clientmessageservice/secure/impl/SecureMessageServiceClientHelper.java
-@@ -36,7 +36,6 @@ import org.bouncycastle.crypto.CipherParameters;
- import org.bouncycastle.crypto.encodings.PKCS1Encoding;
- import org.bouncycastle.crypto.engines.RSAEngine;
- import org.bouncycastle.crypto.params.ParametersWithRandom;
--import org.bouncycastle.jce.provider.RSAUtil;
- import org.gudy.azureus2.core3.util.Debug;
- import org.gudy.azureus2.core3.util.RandomUtils;
- import org.gudy.azureus2.plugins.utils.StaticUtilities;
-@@ -83,30 +82,12 @@ SecureMessageServiceClientHelper
-                               
-                       byte[] secret_bytes = session_key.getEncoded();
-                       
--                      try{
-                               Cipher  rsa_cipher = Cipher.getInstance( "RSA" 
);
-                   
-                               rsa_cipher.init( Cipher.ENCRYPT_MODE, 
public_key );
-                   
-                               encryped_session_key = rsa_cipher.doFinal( 
secret_bytes );
-                               
--                      }catch( Throwable e ){
--                              
--                                      // fallback to the BC implementation 
for jdk1.4.2 as JCE RSA not available
--                              
--                              RSAEngine       eng = new RSAEngine();
--                              
--                              PKCS1Encoding   padded_eng = new PKCS1Encoding( 
eng );
--                              
--                  CipherParameters param = 
RSAUtil.generatePublicKeyParameter(public_key);
--                  
--                  param = new ParametersWithRandom(param, 
RandomUtils.SECURE_RANDOM);
--                  
--                  padded_eng.init( true, param );
--                              
--                              encryped_session_key = 
padded_eng.processBlock(secret_bytes, 0, secret_bytes.length);
--                      }
--
-               }catch( Throwable e ){
-                       
-                       e.printStackTrace();

Reply via email to