Add files via upload

This commit is contained in:
Li 2023-08-15 00:38:20 +12:00 committed by GitHub
parent 109bf98904
commit 71840d79c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 149 additions and 0 deletions

45
KeyGeneratorMaven/pom.xml Normal file
View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>KeyGeneratorMaven</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.70</version>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk15on</artifactId>
<version>1.70</version>
<scope>import</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

View File

@ -0,0 +1,95 @@
package org.example;
import javax.crypto.*;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.PBEKeySpec;
import javax.crypto.spec.SecretKeySpec;
import java.security.*;
import java.security.spec.InvalidKeySpecException;
import java.util.Arrays;
import java.util.Base64;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
public class Main {
private static final byte[] iv = {-126, -30, -6, -75, -99, -117, -66, 117, 39, -65, -126, -27, -12, 38, -99, 86};
private static final byte[] salt = {-92, -102, -105, -123, 71, -33, 69, -39, -27, -32, 21, 33, 126, -81, 69, 59, 57, 29, -83, -15};
public static void main(String[] args) {
Security.addProvider(new BouncyCastleProvider());
System.out.println("usrename: "+encryptString("transrights@transgender.lgbt"));
System.out.println("password: "+encryptString("Trans Rights are Human Rights"));
System.out.println("accountId: "+encryptString("-6148914691236517206"));
}
private static String getAndroidId(){
return "a256d883de6fe05a";
//return Settings.Secure.getString(this.ctx.getContentResolver(), "android_id");;
}
private static int getPsmUid() {
return 10123;
}
private static String base64(byte[] data){
byte[] base64 = Base64.getEncoder().encode(data);
return new String(base64);
}
private static String encryptString(String str) {
byte[] data = str.getBytes();
byte[] encryptedData = encrypt(data);
if(encryptedData != null){
byte[] encodedData = Arrays.copyOf(encryptedData, encryptedData.length + 2);
encodedData[encodedData.length - 2] = 1;
encodedData[encodedData.length - 1] = 1;
return base64(encodedData);
}
return "";
}
private static byte[] encrypt(byte[] input){
try {
Cipher cipher =generateKeyCipher(Main.salt, Main.iv, Cipher.ENCRYPT_MODE);
if (cipher != null) {
return cipher.doFinal(input);
}
} catch (BadPaddingException | IllegalBlockSizeException e) { }
return null;
}
private static Cipher generateKeyCipher(final byte[] salt, final byte[] iv, final int opmode) {
try {
final String androidId = getAndroidId();
final String psmUid = String.valueOf(getPsmUid());
if (androidId == null || psmUid == null) {
throw new InvalidParameterException();
}
final SecretKeyFactory skeyFactory = SecretKeyFactory.getInstance("PBEWITHSHAAND256BITAES-CBC-BC");
final char[] charArray = (androidId + psmUid + " com.playstation.psstore ").toCharArray();
final PBEKeySpec keySpec = new PBEKeySpec(charArray, salt, 16, 256);
Arrays.fill(charArray, '\0');
final SecretKeySpec key = new SecretKeySpec(skeyFactory.generateSecret(keySpec).getEncoded(), "AES");
final Cipher newCipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
newCipher.init(opmode, key, new IvParameterSpec(iv), new SecureRandom());
return newCipher;
}
catch (NoSuchPaddingException ex) {
return null;
}
catch (InvalidAlgorithmParameterException ex2) {
return null;
}
catch (InvalidKeyException ex3) {
return null;
}
catch (InvalidKeySpecException ex4) {
return null;
}
catch (NoSuchAlgorithmException ex5) {
return null;
}
}
}

9
SigninInfo.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<string name="SignedInUsername">ixazRIfzsgM1qLucnDvcRgEB
</string>
<boolean name="PassSave" value="true" />
<boolean name="AutoSignIn" value="true" />
<string name="Password">j+/dWQjJmm1gvG1IuevMpKuebIxTwgQMk8vEu66xmqkBAQ==
</string>
</map>