| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace StephenHill\Benchmarks;
- use Athletic\AthleticEvent;
- use StephenHill\Base58;
- use StephenHill\GMPService;
- class Base58GMPEvent extends AthleticEvent
- {
- protected $base58;
- public function setUp()
- {
- $this->base58 = new Base58(null, new GMPService());
- }
- /**
- * @iterations 10000
- */
- public function encodeBase58()
- {
- $this->base58->encode('Hello World');
- }
- /**
- * @iterations 10000
- */
- public function decodeBase58()
- {
- $this->base58->decode('JxF12TrwUP45BMd');
- }
- }
|