mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-04-30 14:44:33 +02:00
7.66
Old bug inserting encrypted accounts
This commit is contained in:
parent
6dfe097b22
commit
50d24e5957
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.tonikelope</groupId>
|
||||
<artifactId>MegaBasterd</artifactId>
|
||||
<version>7.65</version>
|
||||
<version>7.66</version>
|
||||
<packaging>jar</packaging>
|
||||
<repositories>
|
||||
<repository>
|
||||
|
@ -67,7 +67,7 @@ import javax.swing.UIManager;
|
||||
*/
|
||||
public final class MainPanel {
|
||||
|
||||
public static final String VERSION = "7.65";
|
||||
public static final String VERSION = "7.66";
|
||||
public static final boolean FORCE_SMART_PROXY = false; //TRUE FOR DEBUGING SMART PROXY
|
||||
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
|
||||
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;
|
||||
|
@ -2599,7 +2599,7 @@ public class SettingsDialog extends javax.swing.JDialog {
|
||||
|
||||
password_aes = Bin2BASE64(CryptTools.aes_cbc_encrypt_pkcs7(BASE642Bin(password_aes), _main_panel.getMaster_pass(), CryptTools.AES_ZERO_IV));
|
||||
|
||||
user_hash = Bin2BASE64(CryptTools.aes_cbc_encrypt_pkcs7(BASE642Bin(user_hash), _main_panel.getMaster_pass(), CryptTools.AES_ZERO_IV));
|
||||
user_hash = Bin2BASE64(CryptTools.aes_cbc_encrypt_pkcs7(BASE642Bin(user_hash.replace('-', '+').replace('_', '/')), _main_panel.getMaster_pass(), CryptTools.AES_ZERO_IV));
|
||||
}
|
||||
|
||||
data.put("password", password);
|
||||
|
@ -23,7 +23,7 @@ public interface Transference {
|
||||
int HTTP_PROXY_READ_TIMEOUT = 20000;
|
||||
int HTTP_CONNECT_TIMEOUT = 60000;
|
||||
int HTTP_READ_TIMEOUT = 60000;
|
||||
int MAX_SIM_TRANSFERENCES = 20;
|
||||
int MAX_SIM_TRANSFERENCES = 50;
|
||||
int SIM_TRANSFERENCES_DEFAULT = 4;
|
||||
int PROGRESS_WATCHDOG_TIMEOUT = 600;
|
||||
boolean LIMIT_TRANSFERENCE_SPEED_DEFAULT = false;
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 180 KiB After Width: | Height: | Size: 180 KiB |
Loading…
x
Reference in New Issue
Block a user