#hex-string #byte-array #hex #string-literal #literals #compile-time #macro

hex-literal

在编译时将十六进制字符串转换为字节数组的宏

15 个版本

0.4.1 2023 年 4 月 5 日
0.3.4 2021 年 11 月 11 日
0.3.3 2021 年 7 月 17 日
0.3.1 2020 年 8 月 2 日
0.1.1 2018 年 2 月 9 日

#4 in 值格式化

Download history 179956/week @ 2024-04-16 173556/week @ 2024-04-23 161675/week @ 2024-04-30 165654/week @ 2024-05-07 173867/week @ 2024-05-14 180079/week @ 2024-05-21 177800/week @ 2024-05-28 180869/week @ 2024-06-04 193250/week @ 2024-06-11 182589/week @ 2024-06-18 191721/week @ 2024-06-25 168142/week @ 2024-07-02 188749/week @ 2024-07-09 188090/week @ 2024-07-16 199580/week @ 2024-07-23 182381/week @ 2024-07-30

796,288 每月下载量
用于 1,742 个 crates (799 直接)

MIT/Apache

9KB
75

RustCrypto: hex-literal

Crate Docs Apache 2.0/MIT Licensed MSRV Build Status

此 crate 提供了 hex! 宏,用于在编译时将十六进制字符串字面量转换为字节数组。

它接受以下输入字符串中的字符

  • '0'...'9''a'...'f''A'...'F' — 将用于输出字节数组构造的十六进制字符
  • ' ''\r''\n''\t' — 将被忽略的格式化字符

示例

use hex_literal::hex;

// The macro can be used in const contexts
const DATA: [u8; 4] = hex!("01020304");
assert_eq!(DATA, [1, 2, 3, 4]);

// Both upper and lower hex values are supported
assert_eq!(hex!("a1 b2 c3 d4"), [0xA1, 0xB2, 0xC3, 0xD4]);
assert_eq!(hex!("E5 E6 90 92"), [0xE5, 0xE6, 0x90, 0x92]);
assert_eq!(hex!("0a0B 0C0d"), [10, 11, 12, 13]);

// Multi-line literals
let bytes1 = hex!("
    00010203 04050607
    08090a0b 0c0d0e0f
");
assert_eq!(
    bytes1,
    [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
);

// It's possible to use several literals
// (results will be concatenated)
let bytes2 = hex!(
    "00010203 04050607" // first half
    "08090a0b 0c0d0e0f" // second half
);
assert_eq!(bytes1, bytes2);

在字面量中使用不支持字符会导致编译错误

hex_literal::hex!("АА"); // Cyrillic "А"
hex_literal::hex!("11 22"); // Japanese space

字面量中的注释不受支持

hex_literal::hex!("0123 // foo");

每个字面量必须包含偶数个十六进制字符

hex_literal::hex!(
    "01234"
    "567"
);

最低支持的 Rust 版本

Rust 1.57 或更高版本。

将来,我们保留更改 MSRV 的权利(即 MSRV 不在本 crate 的 SemVer 保证范围内),但是当我们这样做时,将伴随着小版本号的增加。

许可协议

根据您选择,许可协议为

贡献

除非您明确声明,否则您根据Apache-2.0许可证定义的工作中任何有意提交的贡献,都应双重许可,如上所述,没有任何附加条款或条件。

无运行时依赖