mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
38 lines
1007 B
PHP
38 lines
1007 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Utils\Encoding;
|
|
|
|
use phpOMS\Utils\Encoding\XorEncoding;
|
|
use phpOMS\Utils\RnG\StringUtils;
|
|
|
|
/**
|
|
* @testdox phpOMS\tests\Utils\Encoding\XorEncodingTest: XOR text encoding/decoding
|
|
*
|
|
* @internal
|
|
*/
|
|
class XorEncodingTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox Text can be encoded and decoded with the xor encoding
|
|
* @covers phpOMS\Utils\Encoding\XorEncoding
|
|
*/
|
|
public function testEncoding() : void
|
|
{
|
|
$test = XorEncoding::encode('This is a test.', 'abcd');
|
|
self::assertEquals(\hex2bin('350a0a17410b10440042170112164d'), XorEncoding::encode('This is a test.', 'abcd'));
|
|
self::assertEquals('This is a test.', XorEncoding::decode(\hex2bin('350a0a17410b10440042170112164d'), 'abcd'));
|
|
}
|
|
}
|