Open Side Menu Go to the Top
Register
RNG U poker app RNG U poker app

03-13-2021 , 08:01 PM
Hi there, this is probably not the right place.. eitherway.. any of u grinders know anything about the U poker RNG?
RNG U poker app Quote
03-14-2021 , 11:05 AM
I heard it's rigged.
RNG U poker app Quote
03-14-2021 , 04:24 PM
probably
RNG U poker app Quote
03-14-2021 , 05:05 PM
Some say they use SHA1, others say the use SHA2.
RNG U poker app Quote
03-14-2021 , 08:50 PM
Quote:
Originally Posted by Henk from Holland
I heard it's rigged.
Seriously?
RNG U poker app Quote
03-14-2021 , 08:51 PM
Quote:
Originally Posted by Mr.mmmKay
probably
?
RNG U poker app Quote
03-14-2021 , 08:53 PM
Quote:
Originally Posted by Morphismus
Some say they use SHA1, others say the use SHA2.
Not into coding , but can you explain what you mean? I obv searched for the meaning of sha 1 and 2 on the internet, only thing i could think of is that sha1 could be a programmed rng.. you could be fooling me.. not sure
RNG U poker app Quote
03-15-2021 , 01:34 AM
Fifty-two-sided dice.
RNG U poker app Quote
03-16-2021 , 05:35 PM
probably
RNG U poker app Quote
04-02-2021 , 09:49 AM
Quote:
Originally Posted by Morphismus
Some say they use SHA1, others say the use SHA2.
Some say kos.....or some say kosm...
RNG U poker app Quote
04-03-2021 , 05:10 AM
U poker app uses Blow Fish algorhitmus. It goes like this:

int
Blowfish_Test(BLOWFISH_CTX *ctx)
{
uint32_t L = 1, R = 2;

Blowfish_Init(ctx, (unsigned char*)”TESTKEY”, 7);
Blowfish_Encrypt(ctx, &L, &R);
if (L != 0xDF333FD2L || R != 0x30A71BB4L) return (-1);

Blowfish_Decrypt(ctx, &L, &R);
if (L != 1 || R != 2) return (-1); return (0);
}

Highly suspicious if you ask me.
RNG U poker app Quote
04-06-2021 , 11:40 AM
Quote:
Originally Posted by Penetrator
U poker app uses Blow Fish algorhitmus. It goes like this:

int
Blowfish_Test(BLOWFISH_CTX *ctx)
{
uint32_t L = 1, R = 2;

Blowfish_Init(ctx, (unsigned char*)”TESTKEY”, 7);
Blowfish_Encrypt(ctx, &L, &R);
if (L != 0xDF333FD2L || R != 0x30A71BB4L) return (-1);

Blowfish_Decrypt(ctx, &L, &R);
if (L != 1 || R != 2) return (-1); return (0);
}

Highly suspicious if you ask me.
That is a test; what we need are the definitions of Blowfish_Init(), Blowfish_Encrypt() and Blowfish_Decrypt().
RNG U poker app Quote

      
m