Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed unused encryption algorithms and implemented certificate transparency #163

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ android {
compileSdkVersion 27
defaultConfig {
applicationId "com.flutterwave.rave_android"
minSdkVersion 15
minSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
6 changes: 4 additions & 2 deletions raveandroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ android {
compileSdkVersion 27

defaultConfig {
minSdkVersion 15
minSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0.43"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

multiDexEnabled true
}
buildTypes {
release {
Expand All @@ -28,6 +28,7 @@ android {
lintOptions {
abortOnError false
}

}

dependencies {
Expand All @@ -45,6 +46,7 @@ dependencies {
implementation 'org.parceler:parceler-api:1.1.9'
annotationProcessor 'org.parceler:parceler:1.1.9'
implementation 'com.squareup.retrofit2:converter-scalars:2.1.0'
implementation 'com.babylon.certificatetransparency:certificatetransparency-android:0.2.0'
implementation 'com.scottyab:aescrypt:0.0.1'
testImplementation 'junit:junit:4.12'
// dagger 2
Expand Down
46 changes: 0 additions & 46 deletions raveandroid/src/main/java/com/flutterwave/raveandroid/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,8 @@
import com.scottyab.aescrypt.AESCrypt;

import java.lang.reflect.Type;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.security.GeneralSecurityException;
import java.security.KeyFactory;
import java.security.MessageDigest;
import java.security.PublicKey;
import java.security.spec.X509EncodedKeySpec;
import java.util.List;

import javax.crypto.Cipher;
Expand All @@ -34,10 +29,6 @@ public class Utils {

private static final String ALGORITHM = "DESede";
private static final String TRANSFORMATION = "DESede/ECB/PKCS5Padding";
private static final String TARGET = "FLWSECK-";
private static final String MD5 = "MD5";
private static final String CHARSET_NAME = "UTF-8";
private static final String UTF_8 = "utf-8";

public static String getDeviceId(Context c) {
return Settings.Secure.getString(c.getContentResolver(), Settings.Secure.ANDROID_ID);
Expand Down Expand Up @@ -106,33 +97,6 @@ public static String stringifySubaccounts(List<SubAccount> subAccounts) {
return gson.toJson(subAccounts, type);
}

public static byte[] RSAEncrypt(String plaintext) {
PublicKey key = getKey("baA/RgjURU3I0uqH3iRos3NbE8fT+lP8SDXKymsnfdPrMQAEoMBuXtoaQiJ1i5tuBG9EgSEOH1LAZEaAsvwClw==");
byte[] ciphertext = null;
try {
Cipher cipher = Cipher.getInstance("RSA/ECB/OAEPPadding");
cipher.init(Cipher.ENCRYPT_MODE, key);
ciphertext = cipher.doFinal(plaintext.getBytes());
} catch (Exception e) {
e.printStackTrace();
}
return ciphertext;
}

public static PublicKey getKey(String key) {
try {
byte[] byteKey = Base64.decode(key.getBytes(Charset.forName("UTF-16")), Base64.DEFAULT);
X509EncodedKeySpec X509publicKey = new X509EncodedKeySpec(byteKey);
KeyFactory kf = KeyFactory.getInstance("RSA");

return kf.generatePublic(X509publicKey);
} catch (Exception e) {
e.printStackTrace();
}

return null;
}

public static String getEncryptedData(String unEncryptedString, String encryptionKey) {

if (unEncryptedString != null && encryptionKey != null) {
Expand Down Expand Up @@ -178,16 +142,6 @@ private static String encrypt(String data, String key) throws Exception {

}

private static String getMd5(String md5) throws Exception {
MessageDigest md = MessageDigest.getInstance(MD5);
byte[] array = md.digest(md5.getBytes(CHARSET_NAME));
StringBuffer sb = new StringBuffer();
for (int i = 0; i < array.length; ++i) {
sb.append(Integer.toHexString((array[i] & 0xFF) | 0x100), 1, 3);
}
return sb.toString();
}

public static String obfuscateCardNumber(String first6, String last4) {

int cardNoLength = first6.length() + last4.length();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,13 +291,14 @@ public void showProgressIndicator(boolean active) {
progessDialog = new ProgressDialog(getActivity());
progessDialog.setCanceledOnTouchOutside(false);
progessDialog.setMessage(getResources().getString(R.string.wait));
if (active && !progessDialog.isShowing()) {
progessDialog.show();
} else {
progessDialog.dismiss();
}
}

if (active && !progessDialog.isShowing()) {
progessDialog.show();
} else {
progessDialog.dismiss();
}

} catch (NullPointerException e) {
e.printStackTrace();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.flutterwave.raveandroid.di.modules;

import com.babylon.certificatetransparency.BasicAndroidCTLogger;
import com.babylon.certificatetransparency.CTInterceptorBuilder;
import com.flutterwave.raveandroid.data.EventLoggerService;

import java.util.concurrent.TimeUnit;
Expand Down Expand Up @@ -40,7 +42,17 @@ public Retrofit providesRetrofit() {
logging.setLevel(HttpLoggingInterceptor.Level.BODY);

OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
OkHttpClient okHttpClient = httpClient.addNetworkInterceptor(logging).connectTimeout(60, TimeUnit.SECONDS)

CTInterceptorBuilder ctInterceptorBuilder = new CTInterceptorBuilder();
BasicAndroidCTLogger basicAndroidCTLogger = new BasicAndroidCTLogger(true);
ctInterceptorBuilder.includeHost("ravesandboxapi.flutterwave.com")
.includeHost("ravesandboxapi.flutterwave.com")
.includeHost("rave-webhook.herokuapp.com/receivepayment")
.includeHost("kgelfdz7mf.execute-api.us-east-1.amazonaws.com/")
.includeHost("api.ravepay.co");
ctInterceptorBuilder.setLogger(basicAndroidCTLogger);

OkHttpClient okHttpClient = httpClient.addNetworkInterceptor(ctInterceptorBuilder.build()).addNetworkInterceptor(logging).connectTimeout(60, TimeUnit.SECONDS)
.readTimeout(60, TimeUnit.SECONDS)
.writeTimeout(60, TimeUnit.SECONDS).build();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.flutterwave.raveandroid.di.modules;

import com.babylon.certificatetransparency.BasicAndroidCTLogger;
import com.babylon.certificatetransparency.CTInterceptorBuilder;
import com.flutterwave.raveandroid.data.ApiService;
import com.google.gson.Gson;

Expand Down Expand Up @@ -43,7 +45,16 @@ public Retrofit providesRetrofit() {
logging.setLevel(HttpLoggingInterceptor.Level.BODY);

OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
OkHttpClient okHttpClient = httpClient.addNetworkInterceptor(logging).connectTimeout(60, TimeUnit.SECONDS)

CTInterceptorBuilder ctInterceptorBuilder = new CTInterceptorBuilder();
BasicAndroidCTLogger basicAndroidCTLogger = new BasicAndroidCTLogger(true);
ctInterceptorBuilder.includeHost("ravesandboxapi.flutterwave.com")
.includeHost("rave-webhook.herokuapp.com/receivepayment")
.includeHost("kgelfdz7mf.execute-api.us-east-1.amazonaws.com/")
.includeHost("api.ravepay.co");
ctInterceptorBuilder.setLogger(basicAndroidCTLogger);

OkHttpClient okHttpClient = httpClient.addNetworkInterceptor(ctInterceptorBuilder.build()).addNetworkInterceptor(logging).connectTimeout(60, TimeUnit.SECONDS)
.readTimeout(60, TimeUnit.SECONDS)
.writeTimeout(60, TimeUnit.SECONDS).build();

Expand Down