@swimlane/nodegit 2.0.8 → 2.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prebuilds/darwin-arm64/@swimlane+nodegit.glibc.node +0 -0
- package/prebuilds/linux-arm64/@swimlane+nodegit.glibc.node +0 -0
- package/prebuilds/linux-x64/@swimlane+nodegit.glibc.node +0 -0
- package/prebuilds/linux-x64/@swimlane+nodegit.musl.node +0 -0
- package/vendor/libssh2/src/hostkey.c +2 -0
- package/vendor/libssh2/src/kex.c +2 -0
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1227,9 +1227,11 @@ static const LIBSSH2_HOSTKEY_METHOD *hostkey_methods[] = {
|
|
|
1227
1227
|
&hostkey_method_ecdsa_ssh_nistp384_cert,
|
|
1228
1228
|
&hostkey_method_ecdsa_ssh_nistp521_cert,
|
|
1229
1229
|
#endif
|
|
1230
|
+
#if 0
|
|
1230
1231
|
#if LIBSSH2_ED25519
|
|
1231
1232
|
&hostkey_method_ssh_ed25519,
|
|
1232
1233
|
#endif
|
|
1234
|
+
#endif
|
|
1233
1235
|
#if LIBSSH2_RSA
|
|
1234
1236
|
#if LIBSSH2_RSA_SHA2
|
|
1235
1237
|
&hostkey_method_ssh_rsa_sha2_512,
|
package/vendor/libssh2/src/kex.c
CHANGED
|
@@ -3038,10 +3038,12 @@ kex_method_extension_negotiation = {
|
|
|
3038
3038
|
};
|
|
3039
3039
|
|
|
3040
3040
|
static const LIBSSH2_KEX_METHOD *libssh2_kex_methods[] = {
|
|
3041
|
+
#if 0
|
|
3041
3042
|
#if LIBSSH2_ED25519
|
|
3042
3043
|
&kex_method_ssh_curve25519_sha256,
|
|
3043
3044
|
&kex_method_ssh_curve25519_sha256_libssh,
|
|
3044
3045
|
#endif
|
|
3046
|
+
#endif
|
|
3045
3047
|
#if LIBSSH2_ECDSA
|
|
3046
3048
|
&kex_method_ecdh_sha2_nistp256,
|
|
3047
3049
|
&kex_method_ecdh_sha2_nistp384,
|