Key.hx 284 B

1234567891011
  1. package sys.ssl;
  2. extern class Key {
  3. static function loadFile( file : String, ?isPublic : Bool, ?pass : String ) : Key;
  4. static function readPEM( data : String, isPublic : Bool, ?pass : String ) : Key;
  5. static function readDER( data : haxe.io.Bytes, isPublic : Bool ) : Key;
  6. }