首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • sha256sum和 md5sum 命令之间的区别

    hashes The primary difference between the older MD5 and the newer SHA-256 hashes is that MD5 produces a 128 collisions is lower with SHA-256 compared to MD5 because its 256-bit hash is double the size of MD5's 128

    1.2K00发布于 2020-12-30
  • 来自专栏嵌入式智能硬件

    蓝牙---BLE GATT介绍

    0x2800 – UUID for <Primary Service> 0x2801 – UUID for <Secondary Service> 16-bit Bluetooth UUID 128 No Authorization 规则如下: - 当多个服务存在时 使用16-bit Bluetooth UUID服务定义的服务应该分组(如按顺序排列) 同理,使用128 containing the value of this characteristic Characteristic UUID 2/16 octets 16-bit Bluetooth UUID or 128 Attribute Type Attribute Value Attribute Permissions 0xNNNN 0xuuuu – 16-bit Bluetooth UUID or 128 Starting Handle : 0x0001 - Ending Handle : 0xFFFF - Attribute Value : 16-bit Bluetooth UUID or 128

    4.2K20发布于 2020-08-31
  • 来自专栏全栈程序员必看

    CPU指令集——AVX2

    The lower 128-bits of the YMM registers are aliased to the respective 128-bit XMM registers. 其中YMM寄存器的低128位与Intel SSE指令集的128-BIT XMM寄存器复用。 如对于128-bit访问的16字节对齐和对于256-bit访问的32字节对齐。

    19.2K10编辑于 2022-08-23
  • 来自专栏蓝牙Ble/Mesh

    BLE安全之配对流程剖析(3)

    • Identity Resolving Key (IRK) :一个128-bit key 用于生成和解析随机地址的。 • Connection Signature Resolving Key (CSRK) :128-bit key 用于对数据签名和认证的 • Long Term Key (LTK) :128-bit key

    2.8K20编辑于 2023-02-28
  • 来自专栏全栈程序员必看

    murmurhash算法_自我介绍的方式

    hash(‘foo’) # 32-bit signed int -156908512 mmh3.hash64(‘foo’) # two 64-bit signed ints (the 128 -bit hash sliced in half) (-2129773440516405919, 9128664383759220103) mmh3.hash128(‘foo’) # 128 -bit signed int 168394135621993849475852668931176482145 mmh3.hash_bytes(‘foo’) # 128-bit value

    3.3K21编辑于 2022-11-07
  • 来自专栏杨焱的专栏

    使用mysql uuid_short() 函数生成17位UUID

    Returns a “short” universal identifier as a 64-bit unsigned integer (rather than a string-form 128-bit

    3.7K20编辑于 2021-12-08
  • 来自专栏orientlu

    BLE 广播格式定义

    和列表完整性(complete 和 incomplete) 16-bit Bluetooth Service UUIDs 32-bit Bluetooth Service UUIDs Global 128 this data 0x05 Complete list of 32-bit Service UUIDs 0x01 Length of this data 0x07 Complete list of 128

    4.5K20发布于 2018-09-13
  • 来自专栏物联网思考

    基于CH579实现蓝牙(ble4.2)控制led亮灭

    *pLen = 0; status = ATT_ERR_ATTR_NOT_FOUND; break; } } else { // 128 write permissions) status = ATT_ERR_ATTR_NOT_FOUND; break; } } else { // 128

    1.5K50发布于 2021-10-09
  • 来自专栏全栈程序员必看

    md5值是不是哈希值_2000哈希

    MD5 checksum consists of 128-bit value which is generally expressed as the hexadecimal format with which MD5 checksums are 128-bit values MD5校验和是128位值 MD5 checksums can be expressed in different encodings

    1.4K20编辑于 2022-09-30
  • 来自专栏直播知识

    仿抖音短视频APP源码,AES加密工具类封装

    更换成自己的密钥";    public AES64() throws Exception {       // hash password with SHA-256 and crop the output to 128

    1.5K30发布于 2020-11-04
  • 来自专栏程序员云帆哥

    Java将图片转Base64

    例如,在Java Persistence系统Hibernate中,就采用了Base64来将一个较长的唯一标识符(一般为128-bit的UUID)编码为一个字符串,用作HTTP表单和HTTP GET URL

    2.5K40编辑于 2022-05-12
  • 来自专栏Golang语言社区

    Go语言-base64使用

    例如,在Java Persistence系统Hibernate中,就采用了Base64来将一个较长的唯一标识符(一般为128-bit的UUID)编码为一个字符串,用作HTTP表单和HTTP GET URL

    1.1K130发布于 2018-03-27
  • Quadro P2000显卡信息

    Clock rate:                             3004 Mhz   Memory Bus Width:                              128

    29400编辑于 2025-07-21
  • 来自专栏全栈程序员必看

    国密SM4分组加密[通俗易懂]

    < SM4 subkeys */ }sm4_context; /** * \brief SM4 key schedule (128-bit, encryption) sm4_setkey_enc( sm4_context *ctx, unsigned char key[16] ); /** * \brief SM4 key schedule (128 output,4); PUT_ULONG_BE(ulbuf[33],output,8); PUT_ULONG_BE(ulbuf[32],output,12); } /* * SM4 key schedule (128 unsigned char key[16] ) { ctx->mode = SM4_ENCRYPT; sm4_setkey( ctx->sk, key ); } /* * SM4 key schedule (128

    2.5K30编辑于 2022-11-10
  • 来自专栏GPUS开发者

    Jetson Xavier NX资料全放送,NVIDIA这次很麻利儿

    Memory: 8 GB 128-bit LPDDR4x DRAM | Maximum Operating Frequency: 1600 MHz Storage 16 GB eMMC 5.1 Flash

    3.6K20发布于 2019-11-12
  • 来自专栏明明如月的技术专栏

    将非数字的用户ID映射到位图的方案探讨

    MurmurHash3.hash64(data); System.out.println("64-bit hash: " + hash64); // Compute a 128 two long values long[] hash128x64 = MurmurHash3.hash128x64(data); System.out.println("128

    1.6K30编辑于 2023-03-09
  • 来自专栏全栈程序员必看

    svn配置帐号密码「建议收藏」

    values larger than 1 are correlated ### to the effective key length for encryption (e.g. 128 means 128

    2.4K20编辑于 2022-10-03
  • 来自专栏AIOT

    我主要使用的设备:Jetson Orin NANO开发套件开箱

    同时,该开发板还配备了一颗6核心的Arm Cortex-A78AE v8.2 64位CPU,内存为8GB 128-bit LPDDR5,具有68GB/s的带宽,可以提供出色的计算性能。

    1.8K10编辑于 2024-08-07
  • 来自专栏技术杂记

    9

    10178]: peer from calling number 103.240.124.15 authorizedAug 25 00:26:05 pptp-server pppd[10178]: MPPE 128

    98120编辑于 2022-06-30
  • 来自专栏GPUS开发者

    NVIDIA今日发布Jetson TX2 NX模组:TX2的算力,NX的长相,重要的是...

    (3) 内存是4GB 128-bit LPDDR4 @ 1866Mhz | 51.2 GB/s,比TX2的内存性能要弱,但是跟Jetson NANO相比,内存性能是翻倍的。

    3.8K20发布于 2021-02-25
领券