!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/share/doc/libsodium-devel/   drwxr-xr-x
Free 6182.11 GB of 6263.31 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     scalarmult5.c (1.18 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

#define TEST_NAME "scalarmult5"
#include "cmptest.h"

static unsigned char alicesk[32] = { 0x77, 0x07, 0x6d, 0x0a, 0x73, 0x18, 0xa5,
                                     0x7d, 0x3c, 0x16, 0xc1, 0x72, 0x51, 0xb2,
                                     0x66, 0x45, 0xdf, 0x4c, 0x2f, 0x87, 0xeb,
                                     0xc0, 0x99, 0x2a, 0xb1, 0x77, 0xfb, 0xa5,
                                     0x1d, 0xb9, 0x2c, 0x2a };

static unsigned char bobpk[32] = { 0xde, 0x9e, 0xdb, 0x7d, 0x7b, 0x7d, 0xc1,
                                   0xb4, 0xd3, 0x5b, 0x61, 0xc2, 0xec, 0xe4,
                                   0x35, 0x37, 0x3f, 0x83, 0x43, 0xc8, 0x5b,
                                   0x78, 0x67, 0x4d, 0xad, 0xfc, 0x7e, 0x14,
                                   0x6f, 0x88, 0x2b, 0x4f };

static unsigned char k[32];

int
main(void)
{
    int i;
    int ret;

    ret = crypto_scalarmult(k, alicesk, bobpk);
    assert(ret == 0);

    for (i = 0; i < 32; ++i) {
        if (i > 0) {
            printf(",");
        } else {
            printf(" ");
        }
        printf("0x%02x", (unsigned int) k[i]);
        if (i % 8 == 7) {
            printf("\n");
        }
    }
    return 0;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0107 ]--