mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
Add minimalistic HMAC_DRBG implementation
(copied from ECDSA)
This commit is contained in:
parent
2cb1a0c400
commit
490bdf3928
7 changed files with 285 additions and 0 deletions
|
|
@ -168,6 +168,7 @@
|
|||
<ClInclude Include="..\..\include\polarssl\error.h" />
|
||||
<ClInclude Include="..\..\include\polarssl\gcm.h" />
|
||||
<ClInclude Include="..\..\include\polarssl\havege.h" />
|
||||
<ClInclude Include="..\..\include\polarssl\hmac_drbg.h" />
|
||||
<ClInclude Include="..\..\include\polarssl\md2.h" />
|
||||
<ClInclude Include="..\..\include\polarssl\md4.h" />
|
||||
<ClInclude Include="..\..\include\polarssl\md5.h" />
|
||||
|
|
@ -227,6 +228,7 @@
|
|||
<ClCompile Include="..\..\library\error.c" />
|
||||
<ClCompile Include="..\..\library\gcm.c" />
|
||||
<ClCompile Include="..\..\library\havege.c" />
|
||||
<ClCompile Include="..\..\library\hmac_drbg.c" />
|
||||
<ClCompile Include="..\..\library\md2.c" />
|
||||
<ClCompile Include="..\..\library\md4.c" />
|
||||
<ClCompile Include="..\..\library\md5.c" />
|
||||
|
|
|
|||
|
|
@ -185,6 +185,10 @@ SOURCE=..\..\library\havege.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\library\hmac_drbg.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\library\md2.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -457,6 +461,10 @@ SOURCE=..\..\include\polarssl\havege.h
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\polarssl\hmac_drbg.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\include\polarssl\md2.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue