zoukankan      html  css  js  c++  java
  • 其他运算指令

    inc= increase
    dec=decrease
    and
    or
    not
    xor

    inc 操作数

    inc r/m

    0x12=0001 0010
    0x34=0011 0100
    ==================
             0001 0000


    0x12=0001 0010
    0x34=0011 0100
    ==================
             0011 0110


    0x12=0001 0010
    0x34=0011 0100
    ==================
             0010  0110

    mov al,0x0
    xor al,al
    xor al,al

    0x12=0001 0010
    0x12=0001 0010
    ================
             0000 0000


    xor加密
    0x1234=0001 0010 0011 0100
    0x0033=0000 0000 0011 0011
    =============================
                 0001 0010 0000 0111=0x1207

    0001 0010 0000 0111
    0000 0000 0011 0011
    ==================
    0001 0010 0011 0100  =0x1234

    最简单的加密算法

  • 相关阅读:
    ORM框架
    优酷项目1
    新年第一天
    前端第十天
    前端第九天
    前端第八天
    前端第七天
    前端第六天
    前端第五天
    月亮与六便士
  • 原文地址:https://www.cnblogs.com/xiaodaxiaonao/p/7222495.html
Copyright © 2011-2022 走看看