16-bit MD5 compression for 8-bit string algorithm doubts

Source: Internet
Author: User
Keywords Php md5
Tags bitwise
Generates a 8-bit random string

function make_coupon_card() {        $code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';        $rand = $code[rand(0,25)]            .strtoupper(dechex(date('m')))            .date('d').substr(time(),-5)            .substr(microtime(),2,5)            .sprintf('%02d',rand(0,99));        for(            $a = md5( $rand, true ),            $s = '0123456789ABCDEFGHIJKLMNOPQRSTUV',            $d = '',            $f = 0;            $f < 8;                $g = ord( $a[ $f ] ),            $d .= $s[ ( $g ^ ord( $a[ $f + 8 ] ) ) - $g & 0x1F ],            $f++        );        return $d;    }  

For ($g ^ ord ($a [$f + 8])-$g & 0x1F Bitwise XOR or subtract itself from the operation, the final range is between 0-31, how is this determined?

Reply content:

Generates a 8-bit random string

function make_coupon_card() {        $code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';        $rand = $code[rand(0,25)]            .strtoupper(dechex(date('m')))            .date('d').substr(time(),-5)            .substr(microtime(),2,5)            .sprintf('%02d',rand(0,99));        for(            $a = md5( $rand, true ),            $s = '0123456789ABCDEFGHIJKLMNOPQRSTUV',            $d = '',            $f = 0;            $f < 8;                $g = ord( $a[ $f ] ),            $d .= $s[ ( $g ^ ord( $a[ $f + 8 ] ) ) - $g & 0x1F ],            $f++        );        return $d;    }  

For ($g ^ ord ($a [$f + 8])-$g & 0x1F Bitwise XOR or subtract itself from the operation, the final range is between 0-31, how is this determined?

( $g ^ ord( $a[ $f + 8 ] ) ) - $g & 0x1F
In short there is a key point in which operators have - & higher precedence.
So the overall view should be ( ( $g ^ ord( $a[ $f + 8 ] ) ) - $g ) and 0x1F proceed with the operation,
And that 0x1F is the decimal 31 , and the result range is limited to 0 - 31 between.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.