X509Crt.hx 231 B

123456789101112
  1. package mbedtls;
  2. import haxe.io.Bytes;
  3. extern class X509Crt {
  4. function new():Void;
  5. function next():Null<X509Crt>;
  6. function parse(buf:Bytes):Int;
  7. function parse_file(path:String):Int;
  8. function parse_path(path:String):Int;
  9. }