This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Code that allows conversion of OpenSSL public keys into the juce::RSAKey format. | |
This may or may not work with private keys. | |
I have not tested it with private keys from the server, only public keys from the server. | |
*/ | |
struct PEMHelpers | |
{ | |
using PEMMemoryBlock = juce::MemoryBlock; | |
using PEMDataType = juce::uint8; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
============================================================================== | |
OpenGLAudioVisualiserComponent.cpp | |
Created: 15 Apr 2017 8:00:56pm | |
Author: Will Townsend | |
============================================================================== | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
replace your initialize() in your juce GUI project with this | |
*/ | |
void initialise (const String& commandLine) override | |
{ | |
// This method is where you should put your application's initialisation code.. | |
/* | |
we're going to write a 2-second long 16-bit wave file to disk. | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
============================================================================== | |
ScopedValueSaver.h | |
Created: 2 Sep 2018 9:46:07pm | |
Author: MatkatMusic | |
============================================================================== | |
*/ |