|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace EllipticCurve\Test; |
| 4 | + |
| 5 | +use EllipticCurve\PublicKey; |
| 6 | +use EllipticCurve\Test\TestCase; |
| 7 | + |
| 8 | + |
| 9 | +echo "\n\nRunning Compressed Public Key Test tests:"; |
| 10 | +\Test\printHeader("Compressed Public Key Test"); |
| 11 | + |
| 12 | + |
| 13 | +class TestCompPubKey extends TestCase |
| 14 | +{ |
| 15 | + public function testBatch() |
| 16 | + { |
| 17 | + for ($i = 1; $i <= 1000; $i++) { |
| 18 | + $privateKey = new \EllipticCurve\PrivateKey(); |
| 19 | + $publicKey = $privateKey->publicKey(); |
| 20 | + $publicKeyString = $publicKey->toCompressed(); |
| 21 | + $recoveredPublicKey = \EllipticCurve\PublicKey::fromCompressed($publicKeyString, $publicKey->curve); |
| 22 | + \Test\assertEqual($publicKey->point->x, $recoveredPublicKey->point->x); |
| 23 | + \Test\assertEqual($publicKey->point->y, $recoveredPublicKey->point->y); |
| 24 | + } |
| 25 | + |
| 26 | + } |
| 27 | + |
| 28 | + public function testFromCompressedEven() |
| 29 | + { |
| 30 | + $publicKeyCompressed = "0252972572d465d016d4c501887b8df303eee3ed602c056b1eb09260dfa0da0ab2"; |
| 31 | + $publicKey1 = \EllipticCurve\PublicKey::fromCompressed($publicKeyCompressed); |
| 32 | + $publicKey2 = \EllipticCurve\PublicKey::fromPem("\n-----BEGIN PUBLIC KEY-----\nMFYwEAYHKoZIzj0CAQYFK4EEAAoDQgAEUpclctRl0BbUxQGIe43zA+7j7WAsBWse\nsJJg36DaCrKIdC9NyX2e22/ZRrq8AC/fsG8myvEXuUBe15J1dj/bHA==\n-----END PUBLIC KEY-----\n"); |
| 33 | + \Test\assertEqual($publicKey1->toPem(), $publicKey2->toPem()); |
| 34 | + } |
| 35 | + |
| 36 | + public function testFromCompressedOdd() |
| 37 | + { |
| 38 | + $publicKeyCompressed = "0318ed2e1ec629e2d3dae7be1103d4f911c24e0c80e70038f5eb5548245c475f50"; |
| 39 | + $publicKey1 = \EllipticCurve\PublicKey::fromCompressed($publicKeyCompressed); |
| 40 | + $publicKey2 = \EllipticCurve\PublicKey::fromPem("\n-----BEGIN PUBLIC KEY-----\nMFYwEAYHKoZIzj0CAQYFK4EEAAoDQgAEGO0uHsYp4tPa574RA9T5EcJODIDnADj1\n61VIJFxHX1BMIg0B4cpBnLG6SzOTthXpndIKpr8HEHj3D9lJAI50EQ==\n-----END PUBLIC KEY-----\n"); |
| 41 | + \Test\assertEqual($publicKey1->toPem(), $publicKey2->toPem()); |
| 42 | + } |
| 43 | + |
| 44 | + public function testToCompressedEven() |
| 45 | + { |
| 46 | + $publicKey = \EllipticCurve\PublicKey::fromPem("-----BEGIN PUBLIC KEY-----\nMFYwEAYHKoZIzj0CAQYFK4EEAAoDQgAEUpclctRl0BbUxQGIe43zA+7j7WAsBWse\nsJJg36DaCrKIdC9NyX2e22/ZRrq8AC/fsG8myvEXuUBe15J1dj/bHA==\n-----END PUBLIC KEY-----"); |
| 47 | + $publicKeyCompressed = $publicKey->toCompressed(); |
| 48 | + \Test\assertEqual($publicKeyCompressed, "0252972572d465d016d4c501887b8df303eee3ed602c056b1eb09260dfa0da0ab2"); |
| 49 | + |
| 50 | + } |
| 51 | + |
| 52 | + public function testToCompressedOdd() |
| 53 | + { |
| 54 | + $publicKey = \EllipticCurve\PublicKey::fromPem("-----BEGIN PUBLIC KEY-----\nMFYwEAYHKoZIzj0CAQYFK4EEAAoDQgAEGO0uHsYp4tPa574RA9T5EcJODIDnADj1\n61VIJFxHX1BMIg0B4cpBnLG6SzOTthXpndIKpr8HEHj3D9lJAI50EQ==\n-----END PUBLIC KEY-----"); |
| 55 | + $publicKeyCompressed = $publicKey->toCompressed(); |
| 56 | + \Test\assertEqual($publicKeyCompressed, "0318ed2e1ec629e2d3dae7be1103d4f911c24e0c80e70038f5eb5548245c475f50"); |
| 57 | + } |
| 58 | +} |
| 59 | + |
| 60 | + |
| 61 | +$tests = new TestCompPubKey(); |
| 62 | +$tests->run(); |
0 commit comments