mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
VST fix. Updated the old jucer to be managed with an Introjucer project rather than manually.
This commit is contained in:
parent
35f226319f
commit
e7ca7963f0
72 changed files with 10400 additions and 2806 deletions
|
|
@ -30,10 +30,11 @@
|
|||
/**
|
||||
MD5 checksum class.
|
||||
|
||||
Create one of these with a block of source data or a string, and it calculates the
|
||||
MD5 checksum of that data.
|
||||
Create one of these with a block of source data or a stream, and it calculates
|
||||
the MD5 checksum of that data.
|
||||
|
||||
You can then retrieve this checksum as a 16-byte block, or as a hex string.
|
||||
@see SHA256
|
||||
*/
|
||||
class JUCE_API MD5
|
||||
{
|
||||
|
|
|
|||
|
|
@ -31,10 +31,11 @@
|
|||
/**
|
||||
SHA-256 secure hash generator.
|
||||
|
||||
Create one of these objects from a block of source data or a string, and it
|
||||
represents the SHA-256 hash of that data.
|
||||
Create one of these objects from a block of source data or a stream, and it
|
||||
calculates the SHA-256 hash of that data.
|
||||
|
||||
You can retrieve the hash as a raw 32-byte block, or as a 64-digit hex string.
|
||||
@see MD5
|
||||
*/
|
||||
class JUCE_API SHA256
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue