- Imported from https://github.com/supermegamestre/Project-Real-Resurrection-3 - APKTool decompilation (Smali bytecode) for modding and rebuilding APK - Supports both 32-bit (armeabi-v7a) and 64-bit (arm64-v8a) architectures - Includes full Smali source, resources, and native libraries - Ready to rebuild APK after modifications with apktool b command - Added comprehensive README-apktool.md with modding guide This branch complements the JADX branches: - Use JADX (main/discord-community) to UNDERSTAND code (readable Java) - Use APKTool (this branch) to MODIFY and REBUILD APK (editable Smali) Total: 44,417 files, 538.51 MB Smali source code
311 lines
8.3 KiB
Smali
311 lines
8.3 KiB
Smali
.class public final Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
.super Lcom/mbridge/msdk/thrid/okio/ForwardingSource;
|
|
.source "SourceFile"
|
|
|
|
|
|
# instance fields
|
|
.field private final mac:Ljavax/crypto/Mac;
|
|
|
|
.field private final messageDigest:Ljava/security/MessageDigest;
|
|
|
|
|
|
# direct methods
|
|
.method private constructor <init>(Lcom/mbridge/msdk/thrid/okio/Source;Lcom/mbridge/msdk/thrid/okio/ByteString;Ljava/lang/String;)V
|
|
.locals 1
|
|
|
|
.line 81
|
|
invoke-direct {p0, p1}, Lcom/mbridge/msdk/thrid/okio/ForwardingSource;-><init>(Lcom/mbridge/msdk/thrid/okio/Source;)V
|
|
|
|
.line 83
|
|
:try_start_0
|
|
invoke-static {p3}, Ljavax/crypto/Mac;->getInstance(Ljava/lang/String;)Ljavax/crypto/Mac;
|
|
|
|
move-result-object p1
|
|
|
|
iput-object p1, p0, Lcom/mbridge/msdk/thrid/okio/HashingSource;->mac:Ljavax/crypto/Mac;
|
|
|
|
.line 84
|
|
new-instance v0, Ljavax/crypto/spec/SecretKeySpec;
|
|
|
|
invoke-virtual {p2}, Lcom/mbridge/msdk/thrid/okio/ByteString;->toByteArray()[B
|
|
|
|
move-result-object p2
|
|
|
|
invoke-direct {v0, p2, p3}, Ljavax/crypto/spec/SecretKeySpec;-><init>([BLjava/lang/String;)V
|
|
|
|
invoke-virtual {p1, v0}, Ljavax/crypto/Mac;->init(Ljava/security/Key;)V
|
|
|
|
const/4 p1, 0x0
|
|
|
|
iput-object p1, p0, Lcom/mbridge/msdk/thrid/okio/HashingSource;->messageDigest:Ljava/security/MessageDigest;
|
|
:try_end_0
|
|
.catch Ljava/security/NoSuchAlgorithmException; {:try_start_0 .. :try_end_0} :catch_1
|
|
.catch Ljava/security/InvalidKeyException; {:try_start_0 .. :try_end_0} :catch_0
|
|
|
|
return-void
|
|
|
|
:catch_0
|
|
move-exception p1
|
|
|
|
.line 89
|
|
new-instance p2, Ljava/lang/IllegalArgumentException;
|
|
|
|
invoke-direct {p2, p1}, Ljava/lang/IllegalArgumentException;-><init>(Ljava/lang/Throwable;)V
|
|
|
|
throw p2
|
|
|
|
.line 87
|
|
:catch_1
|
|
new-instance p1, Ljava/lang/AssertionError;
|
|
|
|
invoke-direct {p1}, Ljava/lang/AssertionError;-><init>()V
|
|
|
|
throw p1
|
|
.end method
|
|
|
|
.method private constructor <init>(Lcom/mbridge/msdk/thrid/okio/Source;Ljava/lang/String;)V
|
|
.locals 0
|
|
|
|
.line 71
|
|
invoke-direct {p0, p1}, Lcom/mbridge/msdk/thrid/okio/ForwardingSource;-><init>(Lcom/mbridge/msdk/thrid/okio/Source;)V
|
|
|
|
.line 73
|
|
:try_start_0
|
|
invoke-static {p2}, Ljava/security/MessageDigest;->getInstance(Ljava/lang/String;)Ljava/security/MessageDigest;
|
|
|
|
move-result-object p1
|
|
|
|
iput-object p1, p0, Lcom/mbridge/msdk/thrid/okio/HashingSource;->messageDigest:Ljava/security/MessageDigest;
|
|
|
|
const/4 p1, 0x0
|
|
|
|
iput-object p1, p0, Lcom/mbridge/msdk/thrid/okio/HashingSource;->mac:Ljavax/crypto/Mac;
|
|
:try_end_0
|
|
.catch Ljava/security/NoSuchAlgorithmException; {:try_start_0 .. :try_end_0} :catch_0
|
|
|
|
return-void
|
|
|
|
.line 76
|
|
:catch_0
|
|
new-instance p1, Ljava/lang/AssertionError;
|
|
|
|
invoke-direct {p1}, Ljava/lang/AssertionError;-><init>()V
|
|
|
|
throw p1
|
|
.end method
|
|
|
|
.method public static hmacSha1(Lcom/mbridge/msdk/thrid/okio/Source;Lcom/mbridge/msdk/thrid/okio/ByteString;)Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
.locals 2
|
|
|
|
.line 62
|
|
new-instance v0, Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
|
|
const-string v1, "HmacSHA1"
|
|
|
|
invoke-direct {v0, p0, p1, v1}, Lcom/mbridge/msdk/thrid/okio/HashingSource;-><init>(Lcom/mbridge/msdk/thrid/okio/Source;Lcom/mbridge/msdk/thrid/okio/ByteString;Ljava/lang/String;)V
|
|
|
|
return-object v0
|
|
.end method
|
|
|
|
.method public static hmacSha256(Lcom/mbridge/msdk/thrid/okio/Source;Lcom/mbridge/msdk/thrid/okio/ByteString;)Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
.locals 2
|
|
|
|
.line 67
|
|
new-instance v0, Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
|
|
const-string v1, "HmacSHA256"
|
|
|
|
invoke-direct {v0, p0, p1, v1}, Lcom/mbridge/msdk/thrid/okio/HashingSource;-><init>(Lcom/mbridge/msdk/thrid/okio/Source;Lcom/mbridge/msdk/thrid/okio/ByteString;Ljava/lang/String;)V
|
|
|
|
return-object v0
|
|
.end method
|
|
|
|
.method public static md5(Lcom/mbridge/msdk/thrid/okio/Source;)Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
.locals 2
|
|
|
|
.line 47
|
|
new-instance v0, Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
|
|
const-string v1, "MD5"
|
|
|
|
invoke-direct {v0, p0, v1}, Lcom/mbridge/msdk/thrid/okio/HashingSource;-><init>(Lcom/mbridge/msdk/thrid/okio/Source;Ljava/lang/String;)V
|
|
|
|
return-object v0
|
|
.end method
|
|
|
|
.method public static sha1(Lcom/mbridge/msdk/thrid/okio/Source;)Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
.locals 2
|
|
|
|
.line 52
|
|
new-instance v0, Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
|
|
const-string v1, "SHA-1"
|
|
|
|
invoke-direct {v0, p0, v1}, Lcom/mbridge/msdk/thrid/okio/HashingSource;-><init>(Lcom/mbridge/msdk/thrid/okio/Source;Ljava/lang/String;)V
|
|
|
|
return-object v0
|
|
.end method
|
|
|
|
.method public static sha256(Lcom/mbridge/msdk/thrid/okio/Source;)Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
.locals 2
|
|
|
|
.line 57
|
|
new-instance v0, Lcom/mbridge/msdk/thrid/okio/HashingSource;
|
|
|
|
const-string v1, "SHA-256"
|
|
|
|
invoke-direct {v0, p0, v1}, Lcom/mbridge/msdk/thrid/okio/HashingSource;-><init>(Lcom/mbridge/msdk/thrid/okio/Source;Ljava/lang/String;)V
|
|
|
|
return-object v0
|
|
.end method
|
|
|
|
|
|
# virtual methods
|
|
.method public final hash()Lcom/mbridge/msdk/thrid/okio/ByteString;
|
|
.locals 1
|
|
|
|
iget-object v0, p0, Lcom/mbridge/msdk/thrid/okio/HashingSource;->messageDigest:Ljava/security/MessageDigest;
|
|
|
|
if-eqz v0, :cond_0
|
|
|
|
.line 131
|
|
invoke-virtual {v0}, Ljava/security/MessageDigest;->digest()[B
|
|
|
|
move-result-object v0
|
|
|
|
goto :goto_0
|
|
|
|
:cond_0
|
|
iget-object v0, p0, Lcom/mbridge/msdk/thrid/okio/HashingSource;->mac:Ljavax/crypto/Mac;
|
|
|
|
invoke-virtual {v0}, Ljavax/crypto/Mac;->doFinal()[B
|
|
|
|
move-result-object v0
|
|
|
|
.line 132
|
|
:goto_0
|
|
invoke-static {v0}, Lcom/mbridge/msdk/thrid/okio/ByteString;->of([B)Lcom/mbridge/msdk/thrid/okio/ByteString;
|
|
|
|
move-result-object v0
|
|
|
|
return-object v0
|
|
.end method
|
|
|
|
.method public read(Lcom/mbridge/msdk/thrid/okio/Buffer;J)J
|
|
.locals 7
|
|
.annotation system Ldalvik/annotation/Throws;
|
|
value = {
|
|
Ljava/io/IOException;
|
|
}
|
|
.end annotation
|
|
|
|
.line 94
|
|
invoke-super {p0, p1, p2, p3}, Lcom/mbridge/msdk/thrid/okio/ForwardingSource;->read(Lcom/mbridge/msdk/thrid/okio/Buffer;J)J
|
|
|
|
move-result-wide p2
|
|
|
|
const-wide/16 v0, -0x1
|
|
|
|
cmp-long v0, p2, v0
|
|
|
|
if-eqz v0, :cond_2
|
|
|
|
.line 97
|
|
iget-wide v0, p1, Lcom/mbridge/msdk/thrid/okio/Buffer;->size:J
|
|
|
|
sub-long v2, v0, p2
|
|
|
|
.line 101
|
|
iget-object v4, p1, Lcom/mbridge/msdk/thrid/okio/Buffer;->head:Lcom/mbridge/msdk/thrid/okio/Segment;
|
|
|
|
:goto_0
|
|
cmp-long v5, v0, v2
|
|
|
|
if-lez v5, :cond_0
|
|
|
|
.line 103
|
|
iget-object v4, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->prev:Lcom/mbridge/msdk/thrid/okio/Segment;
|
|
|
|
.line 104
|
|
iget v5, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->limit:I
|
|
|
|
iget v6, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->pos:I
|
|
|
|
sub-int/2addr v5, v6
|
|
|
|
int-to-long v5, v5
|
|
|
|
sub-long/2addr v0, v5
|
|
|
|
goto :goto_0
|
|
|
|
.line 108
|
|
:cond_0
|
|
:goto_1
|
|
iget-wide v5, p1, Lcom/mbridge/msdk/thrid/okio/Buffer;->size:J
|
|
|
|
cmp-long v5, v0, v5
|
|
|
|
if-gez v5, :cond_2
|
|
|
|
.line 109
|
|
iget v5, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->pos:I
|
|
|
|
int-to-long v5, v5
|
|
|
|
add-long/2addr v5, v2
|
|
|
|
sub-long/2addr v5, v0
|
|
|
|
long-to-int v2, v5
|
|
|
|
iget-object v3, p0, Lcom/mbridge/msdk/thrid/okio/HashingSource;->messageDigest:Ljava/security/MessageDigest;
|
|
|
|
if-eqz v3, :cond_1
|
|
|
|
.line 111
|
|
iget-object v5, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->data:[B
|
|
|
|
iget v6, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->limit:I
|
|
|
|
sub-int/2addr v6, v2
|
|
|
|
invoke-virtual {v3, v5, v2, v6}, Ljava/security/MessageDigest;->update([BII)V
|
|
|
|
goto :goto_2
|
|
|
|
:cond_1
|
|
iget-object v3, p0, Lcom/mbridge/msdk/thrid/okio/HashingSource;->mac:Ljavax/crypto/Mac;
|
|
|
|
.line 113
|
|
iget-object v5, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->data:[B
|
|
|
|
iget v6, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->limit:I
|
|
|
|
sub-int/2addr v6, v2
|
|
|
|
invoke-virtual {v3, v5, v2, v6}, Ljavax/crypto/Mac;->update([BII)V
|
|
|
|
.line 115
|
|
:goto_2
|
|
iget v2, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->limit:I
|
|
|
|
iget v3, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->pos:I
|
|
|
|
sub-int/2addr v2, v3
|
|
|
|
int-to-long v2, v2
|
|
|
|
add-long/2addr v2, v0
|
|
|
|
.line 117
|
|
iget-object v4, v4, Lcom/mbridge/msdk/thrid/okio/Segment;->next:Lcom/mbridge/msdk/thrid/okio/Segment;
|
|
|
|
move-wide v0, v2
|
|
|
|
goto :goto_1
|
|
|
|
:cond_2
|
|
return-wide p2
|
|
.end method
|