changjun

Results 8 comments of changjun

I think this is achievable, however, there are a few things to keep in mind: - Are aliases for interfaces and aliases for instances allowed to be duplicated? - How...

演示地址白板[chrome版本 80.0.3987.132(正式版本) (64 位)]

个人认为增加一个导入/导出的功能可能更好一点。把敏感的信息存云端可能不太安全。 - 导入和导出的内容可以根据自定义协议或者加解密方案对其进行保护。

I'm looking forward to this feature too!

Test case: ```java @Test void testMD5Length() { Random random = new Random(); for (int i = 0; i < 10_000; i++) { int randomLength = random.nextInt(100); // @see https://github.com/aventrix/jnanoid String...

@ruansheng8 您可能没理解 issue 的原意。**长度不足32位数** 是指: 通过 `BigInteger#toString(16)` 计算出来的 `md5` 值的长度可能小于 32 位数(比如: 31 位),而不是您提及的把16进制的16理解为长度16。通常的解决办法是采用 **补0** 的方式来解决。具体例子见上文随机串例子: `pIzSCJjkj` -> `d5a0763f00d07ce414ea6ffc46d26a6`。