Skip to content

Instantly share code, notes, and snippets.

@nilsmagnus
nilsmagnus / build.gradle
Created February 11, 2021 11:51
Using encryptedsharedpreferences
android{
//...
defaultConfig {
minSdkVersion 23 // important
targetSdkVersion 30
//...
}
dependencies{
@nilsmagnus
nilsmagnus / android-keystore-getpublickey.kt
Created May 12, 2020 04:53
Get public key from android keystore
import java.security.KeyStore
import arrow.core.Option
const val SIGN_CERT_ALIAS = "SIGN"
fun getPublicSigningKey(): Option<PublicKey> =
runCatching {
val ks: KeyStore = KeyStore.getInstance("AndroidKeyStore").apply {
load(null)
}
@nilsmagnus
nilsmagnus / gist:84e6658a166552e14ab669a1b5930bd8
Created May 11, 2020 11:44
run a block and return result wrapped in an arrow.Either<Throwable,R>
import arrow.core.Either
public inline fun <R> catch(block: () -> R): Either<Throwable,R> {
return try {
Either.right(block())
} catch (e: Throwable) {
Either.left(e)
}
}
@nilsmagnus
nilsmagnus / Makefile
Created November 11, 2019 20:22
HVA I $@ $< * ER EN MAKEFILE
.PHONY: clean build
PROTOC=protoc
PROTOC_GO=protoc-gen-go
DOCKERIMAGE="golang:1.13.3-buster"
leiaschema: generated main.go
go build -o $@
generated: *.proto
@nilsmagnus
nilsmagnus / Makefile
Last active October 30, 2019 09:54
Makefile for watching changes and runinng nose-test on each change
.PHONY: default watch-test test
WATCH_EXEC=$(if $(shell which inotifywait),"inotifywait","fswatch")
WATCH_ARGS=$(if $(shell which inotifywait),"-qre" "close_write" ".","*/*.elm" "-1")
default:
echo "heisann"
test:
@nilsmagnus
nilsmagnus / rsa_ec_sign_and_verify_comparison.go
Created September 20, 2019 12:41
Sign/verify with rsa and ec comparison
package main
import (
"crypto"
"crypto/ecdsa"
"crypto/elliptic"
"crypto/rand"
"crypto/rsa"
"crypto/sha256"
"log"
@nilsmagnus
nilsmagnus / sign_and_verify_test.go
Last active October 10, 2022 16:38
Sign a message and verify signature with go using PKCS1. Compatible with java (SHA256withRSA)
package main
import (
"crypto"
"crypto/rand"
"crypto/rsa"
"crypto/sha256"
"encoding/base64"
"testing"
)
@nilsmagnus
nilsmagnus / rsa_loading.go
Last active March 18, 2023 18:53 — forked from julie-is-late/rsa_loading.go
How to load rsa keys in go
package config
import (
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"io/ioutil"
"log"
)
@nilsmagnus
nilsmagnus / heineman.go
Last active October 1, 2018 07:15
algolia oslo ankomst heineman
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"strings"
)
@nilsmagnus
nilsmagnus / LongBoxedVsPrimitives
Created September 13, 2018 18:54
Naive benchmark for computing on boxed longs vs primitive longs
public class Main {
public static void main(String[] args) {
int size = 30_000_000;
computePrimitives(size);
computeBoxed(size);
}