Live Table: https://diafygi.github.io/webcrypto-examples/
I couldn't find anywhere that had clear examples of WebCryptoAPI, so I wrote examples and made a live table with them. Pull requests welcome!
- generateKey | importKey |
| <template> | |
| <q-page class="bg-light-green window-height window-width row justify-center items-center"> | |
| <div class="column"> | |
| <div class="row"> | |
| <h5 class="text-h5 text-white q-my-md">Company & Co</h5> | |
| </div> | |
| <div class="row"> | |
| <q-card square bordered class="q-pa-lg shadow-1"> | |
| <q-card-section> | |
| <q-form class="q-gutter-md"> |
Live Table: https://diafygi.github.io/webcrypto-examples/
I couldn't find anywhere that had clear examples of WebCryptoAPI, so I wrote examples and made a live table with them. Pull requests welcome!
| @rem Place this file at the live/ directory of the downloaded LIVE555 source files. | |
| @rem Based on instructions at https://nspool.github.io/2016/02/building-live555/ | |
| @rem Tested with Visual Studio 2015 on Windows 10 | |
| @echo off | |
| if exist "%TEMP%\sed.vbs" goto skip_gen_sed | |
| > "%TEMP%\sed.vbs" ( | |
| REM thanks to https://stackoverflow.com/questions/127318/is-there-any-sed-like-utility-for-cmd-exe | |
| @echo.Dim pat, patparts, rxp, inp | |
| @echo.pat = WScript.Arguments(0^) |
| // JS array equivalents to C# LINQ methods - by Dan B. | |
| // First: This version using older JavaScript notation for universal browser support (scroll down for ES6 version): | |
| // Here's a simple array of "person" objects | |
| var people = [ | |
| { name: "John", age: 20 }, | |
| { name: "Mary", age: 35 }, | |
| { name: "Arthur", age: 78 }, | |
| { name: "Mike", age: 27 }, |