Added no_std tag

This commit is contained in:
Joey Hines 2023-09-20 20:18:54 -06:00
parent f8965810ec
commit f0789c977f
No known key found for this signature in database
GPG Key ID: 995E531F7A569DDB

View File

@ -1,3 +1,5 @@
#![no_std]
const SHA1_CONST: &[u32] = &[0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0]; const SHA1_CONST: &[u32] = &[0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0];
pub struct SHA1Hash { pub struct SHA1Hash {