<?php
class CryptoTest extends PHPUnit_Framework_TestCase
{
/**
* @before
*/
public function before()
{
ParagonIE_Sodium_Compat::$disableFallbackForUnitTests = true;
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_auth()
* @covers ParagonIE_Sodium_Compat::crypto_auth_verify()
* @throws SodiumException
* @throws TypeError
*/
public function testCryptoAuth()
{
$key = random_bytes(ParagonIE_Sodium_Compat::CRYPTO_AUTH_KEYBYTES);
$message = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
$message .= random_bytes(64);
$mac = ParagonIE_Sodium_Compat::crypto_auth($message, $key);
$this->assertTrue(
ParagonIE_Sodium_Compat::crypto_auth_verify($mac, $message, $key)
);
$this->assertFalse(
ParagonIE_Sodium_Compat::crypto_auth_verify($mac, $message . 'wrong', $key),
bin2hex($message) . ' == ' . bin2hex($message . 'wrong')
);
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_decrypt()
* @covers ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_encrypt()
* @throws SodiumException
* @throws TypeError
*/
public function testChapoly()
{
$message = str_repeat("\x00", 128);
$key = str_repeat("\x00", 32);
$nonce = str_repeat("\x00", 8);
$ad = '';
$this->assertSame(
$message,
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_decrypt(
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_encrypt(
$message,
$ad,
$nonce,
$key
),
$ad,
$nonce,
$key
),
'Blank Message decryption'
);
}
/**
* @covers ParagonIE_Sodium_Crypto::aead_chacha20poly1305_ietf_encrypt()
* @covers ParagonIE_Sodium_Crypto::aead_chacha20poly1305_ietf_decrypt()
* @throws SodiumException
* @throws TypeError
*/
public function testChapolyIetf()
{
if (PHP_INT_SIZE === 4) {
$preTest = ParagonIE_Sodium_Core32_ChaCha20::ietfStream(
32,
ParagonIE_Sodium_Core_Util::hex2bin("0000000050532d4d73673035"),
ParagonIE_Sodium_Core_Util::hex2bin("846394900c6c826431361885cfbedf4ec77c44f3022b13e9a7d0200728f0a0e1")
);
} else {
$preTest = ParagonIE_Sodium_Core_ChaCha20::ietfStream(
32,
ParagonIE_Sodium_Core_Util::hex2bin("0000000050532d4d73673035"),
ParagonIE_Sodium_Core_Util::hex2bin("846394900c6c826431361885cfbedf4ec77c44f3022b13e9a7d0200728f0a0e1")
);
}
$this->assertSame(
"b5adc0b6453dc145fe24a66f3ddd0a63760db777370663447eb78c0b1eaef49f",
bin2hex($preTest),
'ietfStream'
);
//SessionKey
$sessionKey = ParagonIE_Sodium_Core_Util::hex2bin(
"846394900c6c826431361885cfbedf4ec77c44f3022b13e9a7d0200728f0a0e1"
);
//Encrypted
$encrypted = ParagonIE_Sodium_Core_Util::hex2bin(
"0ffb01f94450b6803ab9fa5994d4e6242c04ac312c8aae2c8de0effd54a0db9a867ee101bfc5ebb235d734edba3c27f299d81644c1bc7b6ca4802550c29d7b28f10e5f5721bcbad2330337b2b64072fb1ead0de5d4923568c6bae5d1cd6ac528ab4d9fda97fa612ffcac0ad68f79b1578b4f1ea1d241b49aff3c71ca0a6e1c1ede16903136baa3f1c4e38e6e021a697a5fd5fd4f7df199b54c6c"
);
// Decrypted
$decrypted = ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt(
$encrypted,
"",
"\0\0\0\0PS-Msg05",
$sessionKey
);
// Encrypt and verify with test data
$reEncrypted = ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_encrypt(
$decrypted,
"",
"\0\0\0\0PS-Msg05",
$sessionKey
);
$this->assertSame(
bin2hex($encrypted),
bin2hex($reEncrypted)
);
$invalid = ParagonIE_Sodium_Core_Util::hex2bin(
"0ffb01f94450b6803ab9fa5994d4e6242c04ac312c8aae2c8de0effd54a0db9a867ee101bfc5ebb235d734edba3c27f299d81644c1bc7b6ca4802550c29d7b28f10e5f5721bcbad2330337b2b64072fb1ead0de5d4923568c6bae5d1cd6ac528ab4d9fda97fa612ffcac0ad68f79b1578b4f1ea1d241b49aff3c71ca0a6e1c1ede16903136baa3f1c4e38e6e021a697a5fd5fd4f7df199b54c6d"
);
try {
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt($invalid, "", "\0\0\0\0PS-Msg05", $sessionKey);
$this->fail('Invalid MAC accepted by crypto_aead_chacha20poly1305_ietf_decrypt()');
} catch (SodiumException $ex) {
$this->assertSame('Invalid MAC', $ex->getMessage());
}
// Random test:
$key = random_bytes(32);
$nonce = random_bytes(12);
$message = 'Test case.';
$aad = 'Optional';
$encA = ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_encrypt($message, '', $nonce, $key);
$encB = ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_encrypt($message, $aad, $nonce, $key);
$this->assertSame(
$message,
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt($encA, '', $nonce, $key)
);
$this->assertSame(
$message,
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt($encB, $aad, $nonce, $key)
);
try {
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt($encA, $aad, $nonce, $key);
$this->fail('Invalid MAC accepted by crypto_aead_chacha20poly1305_ietf_decrypt()');
} catch (SodiumException $ex) {
$this->assertSame('Invalid MAC', $ex->getMessage());
}
try {
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt($encB, '', $nonce, $key);
$this->fail('Invalid MAC accepted by crypto_aead_chacha20poly1305_ietf_decrypt()');
} catch (SodiumException $ex) {
$this->assertSame('Invalid MAC', $ex->getMessage());
}
// Flip bigs in the MAC:
$end = ParagonIE_Sodium_Core_Util::strlen($encA);
$badA = $encA;
$badA[$end - 1] = ParagonIE_Sodium_Core_Util::intToChr(
ParagonIE_Sodium_Core_Util::chrToInt($badA[$end - 1]) ^ 0xff
);
$end = ParagonIE_Sodium_Core_Util::strlen($encB);
$badB = $encA;
$badB[$end - 1] = ParagonIE_Sodium_Core_Util::intToChr(
ParagonIE_Sodium_Core_Util::chrToInt($badB[$end - 1]) ^ 0xff
);
try {
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt($badA, '', $nonce, $key);
$this->fail('Invalid MAC accepted by crypto_aead_chacha20poly1305_ietf_decrypt()');
} catch (SodiumException $ex) {
$this->assertSame('Invalid MAC', $ex->getMessage());
}
try {
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt($badB, $aad, $nonce, $key);
$this->fail('Invalid MAC accepted by crypto_aead_chacha20poly1305_ietf_decrypt()');
} catch (SodiumException $ex) {
$this->assertSame('Invalid MAC', $ex->getMessage());
}
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_decrypt()
* @covers ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_encrypt()
* @throws SodiumException
* @throws TypeError
*/
public function testXChapoly()
{
$message = str_repeat("\x00", 128);
$key = str_repeat("\x00", 32);
$nonce = str_repeat("\x00", 24);
$ad = '';
$this->assertSame(
bin2hex($message),
bin2hex(
ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_decrypt(
ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_encrypt(
$message,
$ad,
$nonce,
$key
),
$ad,
$nonce,
$key
)
),
'Blank Message decryption'
);
$message = "Ladies and Gentlemen of the class of '99: If I could offer you only one tip for the future, sunscreen would be it.";
$key = "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f" .
"\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f";
$nonce = "\x07\x00\x00\x00\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x00\x00\x00\x00\x00\x00\x00\x00";
$ad = "\x50\x51\x52\x53\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7";
$expected = "\x45\x3c\x06\x93\xa7\x40\x7f\x04\xff\x4c\x56\xae\xdb\x17\xa3\xc0\xa1\xaf\xff\x01\x17\x49\x30\xfc\x22\x28\x7c\x33\xdb\xcf\x0a\xc8\xb8\x9a\xd9\x29\x53\x0a\x1b\xb3\xab\x5e\x69\xf2\x4c\x7f\x60\x70\xc8\xf8\x40\xc9\xab\xb4\xf6\x9f\xbf\xc8\xa7\xff\x51\x26\xfa\xee\xbb\xb5\x58\x05\xee\x9c\x1c\xf2\xce\x5a\x57\x26\x32\x87\xae\xc5\x78\x0f\x04\xec\x32\x4c\x35\x14\x12\x2c\xfc\x32\x31\xfc\x1a\x8b\x71\x8a\x62\x86\x37\x30\xa2\x70\x2b\xb7\x63\x66\x11\x6b\xed\x09\xe0\xfd\x5c\x6d\x84\xb6\xb0\xc1\xab\xaf\x24\x9d\x5d\xd0\xf7\xf5\xa7\xea";
$this->assertSame(
bin2hex($expected),
bin2hex(ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_encrypt($message, $ad, $nonce, $key)),
'Test vectors'
);
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_box()
* @covers ParagonIE_Sodium_Compat::crypto_box_open()
* @throws SodiumException
* @throws TypeError
*/
public function testCryptoBox32()
{
if (PHP_INT_SIZE === 8) {
$this->markTestSkipped('Only 32-bit');
return;
}
$nonce = str_repeat("\x00", 24);
$message = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
$message .= str_repeat("\x20", 64);
$alice_secret = ParagonIE_Sodium_Core32_Util::hex2bin('69f208412d8dd5db9d0c6d18512e86f0ec75665ab841372d57b042b27ef89d8c');
$alice_public = ParagonIE_Sodium_Core32_Util::hex2bin('ac3a70ba35df3c3fae427a7c72021d68f2c1e044040b75f17313c0c8b5d4241d');
$bob_secret = ParagonIE_Sodium_Core32_Util::hex2bin('b581fb5ae182a16f603f39270d4e3b95bc008310b727a11dd4e784a0044d461b');
$bob_public = ParagonIE_Sodium_Core32_Util::hex2bin('e8980c86e032f1eb2975052e8d65bddd15c3b59641174ec9678a53789d92c754');
$alice_to_bob = ParagonIE_Sodium_Crypto32::box_keypair_from_secretkey_and_publickey(
$alice_secret,
$bob_public
);
$bob_to_alice = ParagonIE_Sodium_Crypto32::box_keypair_from_secretkey_and_publickey(
$bob_secret,
$alice_public
);
$this->assertSame(
bin2hex(ParagonIE_Sodium_Crypto32::box($message, $nonce, $bob_to_alice)),
bin2hex(ParagonIE_Sodium_Crypto32::box($message, $nonce, $alice_to_bob)),
'box'
);
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_box()
* @covers ParagonIE_Sodium_Compat::crypto_box_open()
* @throws SodiumException
* @throws TypeError
*/
public function testCryptoBox()
{
if (PHP_INT_SIZE === 4) {
$this->markTestSkipped('Ignored on 32-bit');
}
$nonce = str_repeat("\x00", 24);
$message = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
$message .= str_repeat("\x20", 64);
$alice_secret = ParagonIE_Sodium_Core_Util::hex2bin('69f208412d8dd5db9d0c6d18512e86f0ec75665ab841372d57b042b27ef89d8c');
$alice_public = ParagonIE_Sodium_Core_Util::hex2bin('ac3a70ba35df3c3fae427a7c72021d68f2c1e044040b75f17313c0c8b5d4241d');
$bob_secret = ParagonIE_Sodium_Core_Util::hex2bin('b581fb5ae182a16f603f39270d4e3b95bc008310b727a11dd4e784a0044d461b');
$bob_public = ParagonIE_Sodium_Core_Util::hex2bin('e8980c86e032f1eb2975052e8d65bddd15c3b59641174ec9678a53789d92c754');
$alice_to_bob = ParagonIE_Sodium_Crypto::box_keypair_from_secretkey_and_publickey(
$alice_secret,
$bob_public
);
$bob_to_alice = ParagonIE_Sodium_Crypto::box_keypair_from_secretkey_and_publickey(
$bob_secret,
$alice_public
);
$this->assertSame(
bin2hex(ParagonIE_Sodium_Crypto::box($message, $nonce, $bob_to_alice)),
bin2hex(ParagonIE_Sodium_Crypto::box($message, $nonce, $alice_to_bob)),
'box'
);
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_box_seal()
* @covers ParagonIE_Sodium_Compat::crypto_box_seal_open()
* @throws SodiumException
* @throws TypeError
*/
public function testBoxSeal()
{
$message = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
$alice_box_kp = ParagonIE_Sodium_Core_Util::hex2bin(
'15b36cb00213373fb3fb03958fb0cc0012ecaca112fd249d3cf0961e311caac9' .
'fb4cb34f74a928b79123333c1e63d991060244cda98affee14c3398c6d315574'
);
$alice_box_publickey = ParagonIE_Sodium_Core_Util::hex2bin(
'fb4cb34f74a928b79123333c1e63d991060244cda98affee14c3398c6d315574'
);
if (PHP_INT_SIZE === 4) {
$sealed_to_alice = ParagonIE_Sodium_Core_Util::hex2bin(
'95eb5bf05ada25ee51f4158201c261a00bfb1955a9176c8c7f1a' .
'62f299a32e54f6ebccc8ab9d2ce1b1d3710ba37d8db17aeeec0b' .
'78fc3d32b39b79ed96f18948c5a574b8e3f8eccc2f132408c216' .
'46f3aedae4a67fde4f77153b5458b8a6bd712dd8365534c567ec'
);
} else {
$sealed_to_alice = ParagonIE_Sodium_Compat::crypto_box_seal($message, $alice_box_publickey);
}
$alice_opened = ParagonIE_Sodium_Compat::crypto_box_seal_open($sealed_to_alice, $alice_box_kp);
$this->assertSame(
$message,
$alice_opened,
'Decryption failed'
);
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_box_seed_keypair()
* @throws SodiumException
* @throws TypeError
*/
public function testBoxSeed()
{
$seed = "\x77\x07\x6d\x0a\x73\x18\xa5\x7d\x3c\x16\xc1\x72\x51\xb2\x66\x45" .
"\xdf\x4c\x2f\x87\xeb\xc0\x99\x2a\xb1\x77\xfb\xa5\x1d\xb9\x2c\x2a";
if (PHP_INT_SIZE === 4) {
$keypair = ParagonIE_Sodium_Crypto32::box_seed_keypair($seed);
} else {
$keypair = ParagonIE_Sodium_Crypto::box_seed_keypair($seed);
}
$this->assertSame(
"accd44eb8e93319c0570bc11005c0e0189d34ff02f6c17773411ad191293c98f" .
"ed7749b4d989f6957f3bfde6c56767e988e21c9f8784d91d610011cd553f9b06",
ParagonIE_Sodium_Compat::bin2hex($keypair)
);
}
/**
*
* @throws SodiumException
* @throws TypeError
*/
public function testKeypairs()
{
if (PHP_INT_SIZE === 8) {
$box_keypair = ParagonIE_Sodium_Compat::crypto_box_keypair();
$box_public = ParagonIE_Sodium_Compat::crypto_box_publickey($box_keypair);
$sealed = ParagonIE_Sodium_Compat::crypto_box_seal('Test message', $box_public);
$opened = ParagonIE_Sodium_Compat::crypto_box_seal_open($sealed, $box_keypair);
$this->assertSame(
'Test message',
$opened
);
}
$sign_keypair = ParagonIE_Sodium_Core_Util::hex2bin(
'fcdf31aae72e280cc760186d83e41be216fe1f2c7407dd393ad3a45a2fa501a4' .
'ee00f800ae9e986b994ec0af67fe6b017eb78704e81639eee7efa3d3a831d1bc' .
'ee00f800ae9e986b994ec0af67fe6b017eb78704e81639eee7efa3d3a831d1bc'
);
$sign_secret = ParagonIE_Sodium_Compat::crypto_sign_secretkey($sign_keypair);
$sign_public = ParagonIE_Sodium_Compat::crypto_sign_publickey($sign_keypair);
$this->assertSame(
ParagonIE_Sodium_Core_Util::substr($sign_secret, 32),
$sign_public
);
$sign_keypair = ParagonIE_Sodium_Compat::crypto_sign_keypair();
$sign_secret = ParagonIE_Sodium_Compat::crypto_sign_secretkey($sign_keypair);
$sign_public = ParagonIE_Sodium_Compat::crypto_sign_publickey($sign_keypair);
$this->assertSame(
ParagonIE_Sodium_Core_Util::substr($sign_secret, 32),
$sign_public
);
$sig = ParagonIE_Sodium_Compat::crypto_sign_detached('Test message', $sign_secret);
$this->assertTrue(
ParagonIE_Sodium_Compat::crypto_sign_verify_detached($sig, 'Test message', $sign_public)
);
}
/**
* @covers ParagonIE_Sodium_Crypto::scalarmult_base()
* @throws SodiumException
* @throws TypeError
*/
public function testScalarmultBase()
{
$alice_secret = ParagonIE_Sodium_Core_Util::hex2bin('69f208412d8dd5db9d0c6d18512e86f0ec75665ab841372d57b042b27ef89d8c');
$alice_public = ParagonIE_Sodium_Core_Util::hex2bin('ac3a70ba35df3c3fae427a7c72021d68f2c1e044040b75f17313c0c8b5d4241d');
if (PHP_INT_SIZE === 4) {
$this->assertSame(
bin2hex($alice_public),
bin2hex(ParagonIE_Sodium_Crypto32::scalarmult_base($alice_secret))
);
} else {
$this->assertSame(
bin2hex($alice_public),
bin2hex(ParagonIE_Sodium_Crypto::scalarmult_base($alice_secret))
);
}
}
/**
* @covers ParagonIE_Sodium_Crypto::scalarmult()
* @throws SodiumException
* @throws TypeError
*/
public function testScalarmult()
{
$alice_secret = ParagonIE_Sodium_Core_Util::hex2bin('69f208412d8dd5db9d0c6d18512e86f0ec75665ab841372d57b042b27ef89d8c');
$alice_public = ParagonIE_Sodium_Core_Util::hex2bin('ac3a70ba35df3c3fae427a7c72021d68f2c1e044040b75f17313c0c8b5d4241d');
$bob_secret = ParagonIE_Sodium_Core_Util::hex2bin('b581fb5ae182a16f603f39270d4e3b95bc008310b727a11dd4e784a0044d461b');
$bob_public = ParagonIE_Sodium_Core_Util::hex2bin('e8980c86e032f1eb2975052e8d65bddd15c3b59641174ec9678a53789d92c754');
if (PHP_INT_SIZE === 4) {
$this->assertSame(
bin2hex(ParagonIE_Sodium_Crypto32::scalarmult($alice_secret, $bob_public)),
bin2hex(ParagonIE_Sodium_Crypto32::scalarmult($bob_secret, $alice_public))
);
} else {
$this->assertSame(
bin2hex(ParagonIE_Sodium_Crypto::scalarmult($alice_secret, $bob_public)),
bin2hex(ParagonIE_Sodium_Crypto::scalarmult($bob_secret, $alice_public))
);
}
}
/**
* @covers ParagonIE_Sodium_Crypto::sign_detached()
* @throws SodiumException
* @throws TypeError
*/
public function testSignDetached32()
{
if (PHP_INT_SIZE === 8) {
$this->markTestSkipped('Only 32-bit');
}
$secret = ParagonIE_Sodium_Core_Util::hex2bin(
'fcdf31aae72e280cc760186d83e41be216fe1f2c7407dd393ad3a45a2fa501a4' .
'ee00f800ae9e986b994ec0af67fe6b017eb78704e81639eee7efa3d3a831d1bc'
);
$message = 'Test message';
$this->assertSame(
'5e413e791d9bcdbaa1cfd4f83b01c73926f436a467cfc2634fc90651fb0465bfea76083b4ff247f925df96e89da3d9edc11029adf1601cd0f97d1b2c4b02e905',
bin2hex(ParagonIE_Sodium_Crypto32::sign_detached($message, $secret)),
'Generated different signatures'
);
$message = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.';
$this->assertSame(
'36a6d2748f6ab8f76c122a562d55343cb7c6f15c8a45bd55bd8b9e9fadd2363f370cb78fba42c550d487b9bd7413312b6490c8b3ee2cea638997172a9c8c250f',
bin2hex(ParagonIE_Sodium_Crypto32::sign_detached($message, $secret)),
'Generated different signatures'
);
}
/**
* @covers ParagonIE_Sodium_Crypto::sign_detached()
* @throws SodiumException
* @throws TypeError
*/
public function testSignDetached()
{
if (PHP_INT_SIZE === 4) {
$this->markTestSkipped('Ignored on 32-bit');
}
$secret = ParagonIE_Sodium_Core_Util::hex2bin(
'fcdf31aae72e280cc760186d83e41be216fe1f2c7407dd393ad3a45a2fa501a4' .
'ee00f800ae9e986b994ec0af67fe6b017eb78704e81639eee7efa3d3a831d1bc'
);
$message = 'Test message';
$this->assertSame(
'5e413e791d9bcdbaa1cfd4f83b01c73926f436a467cfc2634fc90651fb0465bfea76083b4ff247f925df96e89da3d9edc11029adf1601cd0f97d1b2c4b02e905',
bin2hex(ParagonIE_Sodium_Crypto::sign_detached($message, $secret)),
'Generated different signatures'
);
$message = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.';
$this->assertSame(
'36a6d2748f6ab8f76c122a562d55343cb7c6f15c8a45bd55bd8b9e9fadd2363f370cb78fba42c550d487b9bd7413312b6490c8b3ee2cea638997172a9c8c250f',
bin2hex(ParagonIE_Sodium_Crypto::sign_detached($message, $secret)),
'Generated different signatures'
);
}
/**
* @covers ParagonIE_Sodium_Crypto::sign()
* @covers ParagonIE_Sodium_Crypto::sign_open()
* @throws SodiumException
* @throws TypeError
*/
public function testSign()
{
$secret = ParagonIE_Sodium_Core_Util::hex2bin(
'fcdf31aae72e280cc760186d83e41be216fe1f2c7407dd393ad3a45a2fa501a4' .
'ee00f800ae9e986b994ec0af67fe6b017eb78704e81639eee7efa3d3a831d1bc'
);
$public = ParagonIE_Sodium_Core_Util::hex2bin(
'ee00f800ae9e986b994ec0af67fe6b017eb78704e81639eee7efa3d3a831d1bc'
);
$message = random_bytes(random_int(1, 1024));
$signed = ParagonIE_Sodium_Compat::crypto_sign($message, $secret);
$this->assertSame(
bin2hex($message),
bin2hex(ParagonIE_Sodium_Compat::crypto_sign_open($signed, $public)),
'Signature broken with known good keys'
);
$sign_keypair = ParagonIE_Sodium_Compat::crypto_sign_keypair();
$sign_secret = ParagonIE_Sodium_Compat::crypto_sign_secretkey($sign_keypair);
$sign_public = ParagonIE_Sodium_Compat::crypto_sign_publickey($sign_keypair);
$message = random_bytes(random_int(1, 1024));
$signed = ParagonIE_Sodium_Compat::crypto_sign($message, $sign_secret);
$this->assertSame(
bin2hex($message),
bin2hex(ParagonIE_Sodium_Compat::crypto_sign_open($signed, $sign_public)),
'Signature broken with random keys'
);
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_secretbox()
* @covers ParagonIE_Sodium_Compat::crypto_secretbox_open()
* @throws SodiumException
* @throws TypeError
*/
public function testSecretbox()
{
$secret = random_bytes(32);
$nonce = random_bytes(24);
$message = random_bytes(random_int(1, 1024));
$cipher = ParagonIE_Sodium_Compat::crypto_secretbox($message, $nonce, $secret);
$this->assertSame(
$message,
ParagonIE_Sodium_Compat::crypto_secretbox_open($cipher, $nonce, $secret)
);
}
/**
* @covers ParagonIE_Sodium_Compat::crypto_secretbox_xchacha20poly1305()
* @covers ParagonIE_Sodium_Compat::crypto_secretbox_xchacha20poly1305_open()
* @throws SodiumException
* @throws TypeError
*/
public function testSecretboxXChaCha20Poly1205()
{
$secret = random_bytes(32);
$nonce = random_bytes(24);
$message = random_bytes(random_int(1, 1024));
$cipher = ParagonIE_Sodium_Compat::crypto_secretbox_xchacha20poly1305($message, $nonce, $secret);
$this->assertSame(
$message,
ParagonIE_Sodium_Compat::crypto_secretbox_xchacha20poly1305_open($cipher, $nonce, $secret)
);
}
/**
* @covers ParagonIE_Sodium_Crypto::sign_verify_detached()
* @throws SodiumException
* @throws TypeError
*/
public function testVerifyDetached()
{
$public = ParagonIE_Sodium_Core_Util::hex2bin('ee00f800ae9e986b994ec0af67fe6b017eb78704e81639eee7efa3d3a831d1bc');
$message = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.';
$sig = ParagonIE_Sodium_Core_Util::hex2bin(
'36a6d2748f6ab8f76c122a562d55343cb7c6f15c8a45bd55bd8b9e9fadd2363f' .
'370cb78fba42c550d487b9bd7413312b6490c8b3ee2cea638997172a9c8c250f'
);
if (PHP_INT_SIZE === 4) {
$this->assertTrue(
ParagonIE_Sodium_Crypto32::sign_verify_detached($sig, $message, $public),
'Invalid signature verification checking'
);
} else {
$this->assertTrue(
ParagonIE_Sodium_Crypto::sign_verify_detached($sig, $message, $public),
'Invalid signature verification checking'
);
}
}
}
|