File "ByteOrder.php"

Full Path: /home/digidjwy/public_html/wp-content/plugins/mycryptocheckout/vendor/bitwasp/buffertools/src/Buffertools/ByteOrder.php
File size: 213 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace BitWasp\Buffertools;

class ByteOrder
{
    /**
     * Little endian means bytes must be flipped
     */
    const LE = 0;

    /**
     * Assuming machine byte order?
     */
    const BE = 1;
}