diff options
author | Mario <mario@mariovavti.com> | 2024-01-03 11:07:03 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-03 11:07:03 +0000 |
commit | afe8552be66a05b379ddc7b5f78e40f8a76540b8 (patch) | |
tree | d53037364fa680de21153fb1d3fcfcb3211d0d58 /vendor/stephenhill/base58/benchmarks/Base64Event.php | |
parent | cd0e50da249ba89252a6182b0ac239e003563f61 (diff) | |
download | volse-hubzilla-afe8552be66a05b379ddc7b5f78e40f8a76540b8.tar.gz volse-hubzilla-afe8552be66a05b379ddc7b5f78e40f8a76540b8.tar.bz2 volse-hubzilla-afe8552be66a05b379ddc7b5f78e40f8a76540b8.zip |
comÃposer add tephenhill/base58
Diffstat (limited to 'vendor/stephenhill/base58/benchmarks/Base64Event.php')
-rw-r--r-- | vendor/stephenhill/base58/benchmarks/Base64Event.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/stephenhill/base58/benchmarks/Base64Event.php b/vendor/stephenhill/base58/benchmarks/Base64Event.php new file mode 100644 index 000000000..a558968a3 --- /dev/null +++ b/vendor/stephenhill/base58/benchmarks/Base64Event.php @@ -0,0 +1,24 @@ +<?php + +namespace StephenHill\Benchmarks; + +use Athletic\AthleticEvent; + +class Base64Event extends AthleticEvent +{ + /** + * @iterations 10000 + */ + public function encodeBase64() + { + base64_encode('Hello World'); + } + + /** + * @iterations 10000 + */ + public function decodeBase64() + { + base64_decode('SGVsbG8gV29ybGQ='); + } +} |