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 |
| import React, { useReducer } from "react"; | |
| interface State { | |
| userName: string; | |
| password: string; | |
| isValid: boolean; | |
| } | |
| const initialState: State = { | |
| userName: "", |
| #!/bin/bash | |
| set -ex | |
| # Originally from https://gist.github.com/jedi4ever/b1f8b27d4a803d487fa4 | |
| # This scripts allows you to upload a binary to the iTunes Connect Store and do it for a specific app_id | |
| # Because when you have multiple apps in status for download, xcodebuild upload will complain that multiple apps are in wait status | |
| # Requires application loader to be installed | |
| # See https://developer.apple.com/library/ios/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Chapters/SubmittingTheApp.html |
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!
| using System.IO; | |
| using Java.Security; | |
| using Java.Security.Cert; | |
| using Javax.Net.Ssl; | |
| using Xamarin.Android.Net; | |
| namespace NeunundsechzigGrad.Foo | |
| { | |
| public class DroidTlsClientHandler : AndroidClientHandler | |
| { |
| namespace FabulousSubModules | |
| open Fabulous.Core | |
| open Fabulous.DynamicViews | |
| open Xamarin.Forms | |
| module App = | |
| type Model = | |
| { Global: GlobalModel | |
| Page1: Page1.Model |
| module App | |
| open Elmish | |
| type State = | |
| { CurrentUser: string option } | |
| type Msg = | |
| | SignIn of string | |
| | SignOut |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using MonoTouch.MessageUI; | |
| using MonoTouch.UIKit; | |
| namespace MyApp | |
| { | |
| public interface ICanCleanUpMyself | |
| { |
| namespace Infrastructure | |
| open System.Text.Encodings.Web | |
| open System.Text.Json | |
| open System.Text.Json.Serialization | |
| [<RequireQualifiedAccess>] | |
| module JsonSerializer = | |
| let private setupOptions (options: JsonSerializerOptions) = | |
| options.PropertyNamingPolicy <- JsonNamingPolicy.CamelCase |
| namespace Foo | |
| open System.Text.Encodings.Web | |
| open System.Text.Json | |
| open System.Text.Json.Serialization | |
| [<RequireQualifiedAccess>] | |
| module JsonSerializer = | |
| let private setupOptions (options: JsonSerializerOptions) = | |
| options.PropertyNamingPolicy <- JsonNamingPolicy.CamelCase |
This covers the build times of the core projects of https://github.com/aspnetde/IUBH.TOR:
Note that both cover the exact same functionality.