Skip to content

Commit 8dff95d

Browse files
committed
Update bundled haxe version to 5e4e368
1 parent 0b89aab commit 8dff95d

File tree

7,655 files changed

+73
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,655 files changed

+73
-47
lines changed

build/.current

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5e4e368
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

build/mac_569e52e/std/eval/_std/mbedtls/PkContext.hx build/linux64_5e4e368/std/eval/_std/mbedtls/PkContext.hx

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import haxe.io.Bytes;
55
extern class PkContext {
66
function new():Void;
77

8-
function parse_key(key:Bytes, ?pwd:String):Int;
9-
function parse_keyfile(path:String, ?password:String):Int;
8+
function parse_key(key:Bytes, ?pwd:String, ctr_dbg: CtrDrbg):Int;
9+
function parse_keyfile(path:String, ?password:String, ctr_dbg: CtrDrbg):Int;
1010
function parse_public_key(key:Bytes):Int;
1111
function parse_public_keyfile(path:String):Int;
1212
}

build/mac_569e52e/std/eval/_std/sys/ssl/Key.hx build/linux64_5e4e368/std/eval/_std/sys/ssl/Key.hx

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Key {
3838
var code = if (isPublic) {
3939
key.native.parse_public_keyfile(file);
4040
} else {
41-
key.native.parse_keyfile(file, pass);
41+
key.native.parse_keyfile(file, pass, Mbedtls.getDefaultCtrDrbg());
4242
}
4343
if (code != 0) {
4444
throw(mbedtls.Error.strerror(code));
@@ -51,7 +51,7 @@ class Key {
5151
var code = if (isPublic) {
5252
key.native.parse_public_key(data);
5353
} else {
54-
key.native.parse_key(data);
54+
key.native.parse_key(data, null, Mbedtls.getDefaultCtrDrbg());
5555
}
5656
if (code != 0) {
5757
throw(mbedtls.Error.strerror(code));
File renamed without changes.

0 commit comments

Comments
 (0)