Forums WoW Modding Support Archives TrinityCore Discord Archives [DiscordArchive] so let me see if i follow your logic, leaked is stopped means there is no actual leak of anything?

[DiscordArchive] so let me see if i follow your logic, leaked is stopped means there is no actual leak of anything?

[DiscordArchive] so let me see if i follow your logic, leaked is stopped means there is no actual leak of anything?

Pages (6): Previous 1 2 3 4 5 6 Next
rektbyfaith
Administrator
0
12-17-2020, 07:32 PM
#21
Archived author: MaxtorCoder • Posted: 2020-12-17T19:32:50.319000+00:00
Original source

<@!160800570808991754> Are you ready?
rektbyfaith
12-17-2020, 07:32 PM #21

Archived author: MaxtorCoder • Posted: 2020-12-17T19:32:50.319000+00:00
Original source

<@!160800570808991754> Are you ready?

rektbyfaith
Administrator
0
12-17-2020, 07:33 PM
#22
Archived author: Elliot • Posted: 2020-12-17T19:33:22.434000+00:00
Original source

no pls for the love of god dont leak our code
rektbyfaith
12-17-2020, 07:33 PM #22

Archived author: Elliot • Posted: 2020-12-17T19:33:22.434000+00:00
Original source

no pls for the love of god dont leak our code

rektbyfaith
Administrator
0
12-17-2020, 07:33 PM
#23
Archived author: Elliot • Posted: 2020-12-17T19:33:27.276000+00:00
Original source

i beg you
rektbyfaith
12-17-2020, 07:33 PM #23

Archived author: Elliot • Posted: 2020-12-17T19:33:27.276000+00:00
Original source

i beg you

rektbyfaith
Administrator
0
12-17-2020, 07:33 PM
#24
Archived author: Elliot • Posted: 2020-12-17T19:33:30.447000+00:00
Original source

rektbyfaith
12-17-2020, 07:33 PM #24

Archived author: Elliot • Posted: 2020-12-17T19:33:30.447000+00:00
Original source

rektbyfaith
Administrator
0
12-17-2020, 07:33 PM
#25
Archived author: MaxtorCoder • Posted: 2020-12-17T19:33:33.378000+00:00
Original source

<:OMEGALUL:715875627546312748>
rektbyfaith
12-17-2020, 07:33 PM #25

Archived author: MaxtorCoder • Posted: 2020-12-17T19:33:33.378000+00:00
Original source

<:OMEGALUL:715875627546312748>

rektbyfaith
Administrator
0
12-17-2020, 07:33 PM
#26
Archived author: funjoker • Posted: 2020-12-17T19:33:41.706000+00:00
Original source

<:OMEGALUL:587637404245164042>
rektbyfaith
12-17-2020, 07:33 PM #26

Archived author: funjoker • Posted: 2020-12-17T19:33:41.706000+00:00
Original source

<:OMEGALUL:587637404245164042>

rektbyfaith
Administrator
0
12-17-2020, 07:33 PM
#27
Archived author: Aretha • Posted: 2020-12-17T19:33:46.015000+00:00
Original source

public static bool VerifySignedHash(RSAParameters key, byte[] hash, byte[] signature)
{
byte[] array1 = new byte[key.Modulus.Length];
byte[] array2 = new byte[key.Exponent.Length];
byte[] array3 = new byte[signature.Length];
Array.Copy((Array) key.Modulus, (Array) array1, key.Modulus.Length);
Array.Copy((Array) key.Exponent, (Array) array2, key.Exponent.Length);
Array.Copy((Array) signature, (Array) array3, signature.Length);
Array.Reverse((Array) array1);
Array.Reverse((Array) array2);
Array.Reverse((Array) array3);
BigInteger mod = new BigInteger(array1);
BigInteger exp = new BigInteger(array2);
BigInteger bigInteger = BigInteger.PowMod(new BigInteger(array3), exp, mod);
byte[] signature1 = new byte[key.Modulus.Length];
byte[] id = new byte[19]
{
(byte) 48,
(byte) 49,
(byte) 48,
(byte) 13,
(byte) 6,
(byte) 9,
(byte) 96,
(byte) 134,
(byte) 72,
(byte) 1,
(byte) 101,
(byte) 3,
(byte) 4,
(byte) 2,
(byte) 1,
(byte) 5,
(byte) 0,
(byte) 4,
(byte) 32
};
if (!RSAHelper.MakePKCS1SignatureBlock(hash, hash.Length, id, id.Length, signature1, key.Modulus.Length))
return false;
byte[] array4 = new byte[signature1.Length];
Array.Copy((Array) signature1, (Array) array4, signature1.Length);
Array.Reverse((Array) array4);
return new BigInteger(array4).CompareTo(bigInteger) == 0;
}
}
}
rektbyfaith
12-17-2020, 07:33 PM #27

Archived author: Aretha • Posted: 2020-12-17T19:33:46.015000+00:00
Original source

public static bool VerifySignedHash(RSAParameters key, byte[] hash, byte[] signature)
{
byte[] array1 = new byte[key.Modulus.Length];
byte[] array2 = new byte[key.Exponent.Length];
byte[] array3 = new byte[signature.Length];
Array.Copy((Array) key.Modulus, (Array) array1, key.Modulus.Length);
Array.Copy((Array) key.Exponent, (Array) array2, key.Exponent.Length);
Array.Copy((Array) signature, (Array) array3, signature.Length);
Array.Reverse((Array) array1);
Array.Reverse((Array) array2);
Array.Reverse((Array) array3);
BigInteger mod = new BigInteger(array1);
BigInteger exp = new BigInteger(array2);
BigInteger bigInteger = BigInteger.PowMod(new BigInteger(array3), exp, mod);
byte[] signature1 = new byte[key.Modulus.Length];
byte[] id = new byte[19]
{
(byte) 48,
(byte) 49,
(byte) 48,
(byte) 13,
(byte) 6,
(byte) 9,
(byte) 96,
(byte) 134,
(byte) 72,
(byte) 1,
(byte) 101,
(byte) 3,
(byte) 4,
(byte) 2,
(byte) 1,
(byte) 5,
(byte) 0,
(byte) 4,
(byte) 32
};
if (!RSAHelper.MakePKCS1SignatureBlock(hash, hash.Length, id, id.Length, signature1, key.Modulus.Length))
return false;
byte[] array4 = new byte[signature1.Length];
Array.Copy((Array) signature1, (Array) array4, signature1.Length);
Array.Reverse((Array) array4);
return new BigInteger(array4).CompareTo(bigInteger) == 0;
}
}
}

rektbyfaith
Administrator
0
12-17-2020, 07:34 PM
#28
Archived author: funjoker • Posted: 2020-12-17T19:34:01.354000+00:00
Original source

dat spam
rektbyfaith
12-17-2020, 07:34 PM #28

Archived author: funjoker • Posted: 2020-12-17T19:34:01.354000+00:00
Original source

dat spam

rektbyfaith
Administrator
0
12-17-2020, 07:34 PM
#29
Archived author: Elliot • Posted: 2020-12-17T19:34:02.934000+00:00
Original source

damn no
rektbyfaith
12-17-2020, 07:34 PM #29

Archived author: Elliot • Posted: 2020-12-17T19:34:02.934000+00:00
Original source

damn no

rektbyfaith
Administrator
0
12-17-2020, 07:34 PM
#30
Archived author: Hayden • Posted: 2020-12-17T19:34:04.118000+00:00
Original source

woahh
rektbyfaith
12-17-2020, 07:34 PM #30

Archived author: Hayden • Posted: 2020-12-17T19:34:04.118000+00:00
Original source

woahh

Pages (6): Previous 1 2 3 4 5 6 Next
Recently Browsing
 
Recently Browsing