Ian Harrigan
Ian Harrigan
Ive been trying to read a private key from a pem and kept getting back null, looking into it a little, i noticed that the header format ``` -----BEGIN PRIVATE...
Looking at another issue on hxArduino (https://github.com/ianharrigan/hxArduino/issues/4) made me wonder if this works with haxe4? I dont have a device ready myself, so cant test right now, but just wondering...
https://try.haxe.org/#FCeC7D58 ```haxe enum VariantType { VT_String(s:String); VT_Float(s:Float); } @:transitive abstract Variant(VariantType) from VariantType { @:from static function fromString(s:String):Variant { return VT_String(s); } @:to public function toString():String { if (this ==...