摘要: // Package subtle implements functions that are often useful in cryptographic// code but require careful thought to use correctly.package subtle// Con 阅读全文
posted @ 2020-07-22 17:19 zJanly 阅读(275) 评论(0) 推荐(0)
摘要: static inline uint32_t rotl(uint32_t a, uint8_t n){ return (a << n) | (a >> (32 - n));}static inline uint32_t rotr(uint32_t a, uint8_t n){ return (a > 阅读全文
posted @ 2020-07-22 13:50 zJanly 阅读(587) 评论(0) 推荐(0)