├── .github └── workflows │ ├── build-android.yaml │ └── build-ios.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── install ├── helper-scripts │ ├── ios-create-plists-and-dlopen-override.js │ ├── override-dlopen-paths-preload.js │ └── plisttemplate.xml ├── hooks │ ├── android │ │ ├── after-prepare-build-node-assets-lists.js │ │ ├── after-prepare-create-macOS-builder-helper.js │ │ └── before-plugin-install.js │ ├── both │ │ ├── after-prepare-native-modules-preference.js │ │ └── after-prepare-patch-npm-packages.js │ └── ios │ │ ├── after-plugin-install.js │ │ ├── before-plugin-install.js │ │ ├── before-plugin-uninstall.js │ │ └── fix-xcframework-path.js ├── nodejs-mobile-cordova-assets │ └── builtin_modules │ │ └── cordova-bridge │ │ ├── index.js │ │ └── package.json └── sample-project │ ├── copy-sample-project.sh │ └── www │ ├── js │ └── index.js │ └── nodejs-project │ ├── main.js │ └── package.json ├── libs ├── android │ └── libnode │ │ ├── bin │ │ ├── arm64-v8a │ │ │ └── libnode.so.gz │ │ ├── armeabi-v7a │ │ │ └── libnode.so.gz │ │ ├── x86 │ │ │ └── libnode.so.gz │ │ └── x86_64 │ │ │ └── libnode.so.gz │ │ └── include │ │ └── node │ │ ├── common.gypi │ │ ├── config.gypi │ │ ├── js_native_api.h │ │ ├── js_native_api_types.h │ │ ├── libplatform │ │ ├── libplatform-export.h │ │ ├── libplatform.h │ │ └── v8-tracing.h │ │ ├── node.h │ │ ├── node_api.h │ │ ├── node_api_types.h │ │ ├── node_buffer.h │ │ ├── node_object_wrap.h │ │ ├── node_version.h │ │ ├── openssl │ │ ├── aes.h │ │ ├── archs │ │ │ ├── BSD-x86 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── BSD-x86_64 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── VC-WIN32 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── VC-WIN64-ARM │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── VC-WIN64A │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── aix-gcc │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── aix64-gcc │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── darwin-i386-cc │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── darwin64-arm64-cc │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── darwin64-x86_64-cc │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux-aarch64 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux-armv4 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux-elf │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux-ppc │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux-ppc64 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux-ppc64le │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux-x32 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux-x86_64 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux32-s390x │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux64-mips64 │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── linux64-s390x │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── solaris-x86-gcc │ │ │ │ ├── asm │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── buildinf.h │ │ │ │ │ │ └── include │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── openssl │ │ │ │ │ │ └── opensslconf.h │ │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── solaris64-x86_64-gcc │ │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bn_conf.h │ │ ├── bn_conf_asm.h │ │ ├── bn_conf_no-asm.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dso_conf.h │ │ ├── dso_conf_asm.h │ │ ├── dso_conf_no-asm.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslconf_asm.h │ │ ├── opensslconf_no-asm.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h │ │ ├── uv.h │ │ ├── uv │ │ ├── aix.h │ │ ├── android-ifaddrs.h │ │ ├── bsd.h │ │ ├── darwin.h │ │ ├── errno.h │ │ ├── linux.h │ │ ├── os390.h │ │ ├── posix.h │ │ ├── stdint-msvc2008.h │ │ ├── sunos.h │ │ ├── threadpool.h │ │ ├── tree.h │ │ ├── unix.h │ │ ├── version.h │ │ └── win.h │ │ ├── v8-internal.h │ │ ├── v8-platform.h │ │ ├── v8-profiler.h │ │ ├── v8-testing.h │ │ ├── v8-util.h │ │ ├── v8-value-serializer-version.h │ │ ├── v8-version-string.h │ │ ├── v8-version.h │ │ ├── v8-wasm-trap-handler-posix.h │ │ ├── v8-wasm-trap-handler-win.h │ │ ├── v8.h │ │ ├── v8config.h │ │ ├── zconf.h │ │ └── zlib.h └── ios │ └── nodemobile │ ├── NodeMobile.xcframework.tar.zip │ └── include │ └── node │ ├── common.gypi │ ├── config.gypi │ ├── js_native_api.h │ ├── js_native_api_types.h │ ├── libplatform │ ├── libplatform-export.h │ ├── libplatform.h │ └── v8-tracing.h │ ├── node.h │ ├── node_api.h │ ├── node_api_types.h │ ├── node_buffer.h │ ├── node_object_wrap.h │ ├── node_version.h │ ├── openssl │ ├── aes.h │ ├── archs │ │ ├── BSD-x86 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── BSD-x86_64 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── VC-WIN32 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── VC-WIN64-ARM │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── VC-WIN64A │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── aix-gcc │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── aix64-gcc │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── darwin-i386-cc │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── darwin64-arm64-cc │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── darwin64-x86_64-cc │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux-aarch64 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux-armv4 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux-elf │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux-ppc │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux-ppc64 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux-ppc64le │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux-x32 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux-x86_64 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux32-s390x │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux64-mips64 │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── linux64-s390x │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ ├── solaris-x86-gcc │ │ │ ├── asm │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ │ ├── crypto │ │ │ │ │ ├── buildinf.h │ │ │ │ │ └── include │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ │ ├── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ └── solaris64-x86_64-gcc │ │ │ ├── asm │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ │ ├── asm_avx2 │ │ │ ├── crypto │ │ │ │ ├── buildinf.h │ │ │ │ └── include │ │ │ │ │ └── internal │ │ │ │ │ ├── bn_conf.h │ │ │ │ │ └── dso_conf.h │ │ │ └── include │ │ │ │ ├── openssl │ │ │ │ └── opensslconf.h │ │ │ │ └── progs.h │ │ │ └── no-asm │ │ │ ├── crypto │ │ │ ├── buildinf.h │ │ │ └── include │ │ │ │ └── internal │ │ │ │ ├── bn_conf.h │ │ │ │ └── dso_conf.h │ │ │ └── include │ │ │ ├── openssl │ │ │ └── opensslconf.h │ │ │ └── progs.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1err.h │ ├── asn1t.h │ ├── async.h │ ├── asyncerr.h │ ├── bio.h │ ├── bioerr.h │ ├── blowfish.h │ ├── bn.h │ ├── bn_conf.h │ ├── bn_conf_asm.h │ ├── bn_conf_no-asm.h │ ├── bnerr.h │ ├── buffer.h │ ├── buffererr.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── cmserr.h │ ├── comp.h │ ├── comperr.h │ ├── conf.h │ ├── conf_api.h │ ├── conferr.h │ ├── crypto.h │ ├── cryptoerr.h │ ├── ct.h │ ├── cterr.h │ ├── des.h │ ├── dh.h │ ├── dherr.h │ ├── dsa.h │ ├── dsaerr.h │ ├── dso_conf.h │ ├── dso_conf_asm.h │ ├── dso_conf_no-asm.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── ecerr.h │ ├── engine.h │ ├── engineerr.h │ ├── err.h │ ├── evp.h │ ├── evperr.h │ ├── hmac.h │ ├── idea.h │ ├── kdf.h │ ├── kdferr.h │ ├── lhash.h │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── objectserr.h │ ├── ocsp.h │ ├── ocsperr.h │ ├── opensslconf.h │ ├── opensslconf_asm.h │ ├── opensslconf_no-asm.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pemerr.h │ ├── pkcs12.h │ ├── pkcs12err.h │ ├── pkcs7.h │ ├── pkcs7err.h │ ├── rand.h │ ├── rand_drbg.h │ ├── randerr.h │ ├── rc2.h │ ├── rc4.h │ ├── rc5.h │ ├── ripemd.h │ ├── rsa.h │ ├── rsaerr.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl3.h │ ├── sslerr.h │ ├── stack.h │ ├── store.h │ ├── storeerr.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── tserr.h │ ├── txt_db.h │ ├── ui.h │ ├── uierr.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ ├── x509err.h │ ├── x509v3.h │ └── x509v3err.h │ ├── uv.h │ ├── uv │ ├── aix.h │ ├── android-ifaddrs.h │ ├── bsd.h │ ├── darwin.h │ ├── errno.h │ ├── linux.h │ ├── os390.h │ ├── posix.h │ ├── stdint-msvc2008.h │ ├── sunos.h │ ├── threadpool.h │ ├── tree.h │ ├── unix.h │ ├── version.h │ └── win.h │ ├── v8-internal.h │ ├── v8-platform.h │ ├── v8-profiler.h │ ├── v8-testing.h │ ├── v8-util.h │ ├── v8-value-serializer-version.h │ ├── v8-version-string.h │ ├── v8-version.h │ ├── v8-wasm-trap-handler-posix.h │ ├── v8-wasm-trap-handler-win.h │ ├── v8.h │ ├── v8config.h │ ├── zconf.h │ └── zlib.h ├── package.json ├── plugin.xml ├── src ├── android │ ├── CMakeLists.txt │ ├── build.gradle │ ├── java │ │ └── com │ │ │ └── janeasystems │ │ │ └── cdvnodejsmobile │ │ │ └── NodeJS.java │ └── jni │ │ └── native-lib.cpp ├── common │ └── cordova-bridge │ │ ├── cordova-bridge.cpp │ │ └── cordova-bridge.h └── ios │ ├── CDVNodeJS.hh │ ├── CDVNodeJS.mm │ ├── NodeJSRunner.hh │ └── NodeJSRunner.mm ├── testapp ├── .gitignore ├── README.md ├── config.xml ├── copy-module-from-parent.js ├── package.json ├── res │ ├── README.md │ ├── icon │ │ ├── android │ │ │ ├── icon-36-ldpi.png │ │ │ ├── icon-48-mdpi.png │ │ │ ├── icon-72-hdpi.png │ │ │ └── icon-96-xhdpi.png │ │ └── ios │ │ │ ├── icon-57-2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-72-2x.png │ │ │ └── icon-72.png │ └── screen │ │ ├── android │ │ ├── screen-hdpi-landscape.png │ │ ├── screen-hdpi-portrait.png │ │ ├── screen-ldpi-landscape.png │ │ ├── screen-ldpi-portrait.png │ │ ├── screen-mdpi-landscape.png │ │ ├── screen-mdpi-portrait.png │ │ ├── screen-xhdpi-landscape.png │ │ └── screen-xhdpi-portrait.png │ │ └── ios │ │ ├── screen-ipad-landscape-2x.png │ │ ├── screen-ipad-landscape.png │ │ ├── screen-ipad-portrait-2x.png │ │ ├── screen-ipad-portrait.png │ │ ├── screen-iphone-landscape-2x.png │ │ ├── screen-iphone-landscape.png │ │ ├── screen-iphone-portrait-2x.png │ │ ├── screen-iphone-portrait-568h-2x.png │ │ └── screen-iphone-portrait.png └── www │ ├── auto.html │ ├── css │ └── index.css │ ├── index.html │ ├── jasmine-2.4.1 │ ├── boot.js │ ├── console.js │ ├── jasmine-html.js │ ├── jasmine.css │ ├── jasmine.js │ └── jasmine_favicon.png │ ├── js │ ├── auto.js │ ├── index.js │ └── manual.js │ ├── manual.html │ └── menu.html ├── tests ├── hooks │ └── both │ │ └── install-nodejs-test-project.js ├── nodejs-project │ ├── node-tests │ │ ├── cordova-receive-data.js │ │ ├── cordova-send.js │ │ ├── echo.js │ │ ├── node-add-listener.js │ │ ├── node-datadir.js │ │ ├── node-once.js │ │ ├── node-receive-data.js │ │ ├── node-remove-all-listeners.js │ │ ├── node-remove-listener.js │ │ ├── node-send.js │ │ ├── node-stress-channel.js │ │ ├── stress-channel.js │ │ └── test-base.js │ ├── package.json │ └── test-main.js ├── package.json ├── plugin.xml └── tests.js └── www ├── nodejs_apis.js └── nodejs_events.js /.github/workflows/build-ios.yaml: -------------------------------------------------------------------------------- 1 | name: Build IOS Project 2 | on: 3 | push: 4 | branches: [ unstable ] 5 | pull_request: 6 | branches: [ unstable ] 7 | 8 | jobs: 9 | build: 10 | runs-on: macOS-latest 11 | steps: 12 | - name: Clone repo 13 | uses: actions/checkout@v2 14 | - name: Installing Cordova! 15 | run: | 16 | sudo npm i cordova@10.0.0 -g 17 | - name: Installing the npm dependencies! 18 | run: | 19 | cd testapp 20 | npm i 21 | - name: Copying nodejs-mobile-cordova plugin 22 | run: | 23 | cd testapp 24 | npm run copy-module 25 | - name: Preparing the IOS project! 26 | run: | 27 | cd testapp 28 | cordova prepare ios 29 | - name: Building the ISO project! 30 | run: | 31 | cd testapp 32 | cordova build ios 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | node_modules/ -------------------------------------------------------------------------------- /install/nodejs-mobile-cordova-assets/builtin_modules/cordova-bridge/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-bridge", 3 | "version": "0.2.0", 4 | "description": "Node.js for Mobile Apps Native Bridge", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "JaneaSystems Inc.", 10 | "license": "MIT" 11 | } 12 | -------------------------------------------------------------------------------- /install/sample-project/copy-sample-project.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | SRC_PATH="plugins/nodejs-mobile-cordova/install/sample-project" 3 | 4 | copySampleFile () { 5 | cp -i "$SRC_PATH/$1" $1 6 | } 7 | 8 | mkdir -p "www/nodejs-project" 9 | 10 | copySampleFile "www/js/index.js" 11 | copySampleFile "www/nodejs-project/main.js" 12 | copySampleFile "www/nodejs-project/package.json" -------------------------------------------------------------------------------- /install/sample-project/www/nodejs-project/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodejs-mobile-sample-project", 3 | "version": "0.1.0", 4 | "description": "Node.js for Mobile Apps sample project", 5 | "main": "main.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "Janea Systems Inc.", 10 | "license": "MIT" 11 | } 12 | -------------------------------------------------------------------------------- /libs/android/libnode/bin/arm64-v8a/libnode.so.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/libs/android/libnode/bin/arm64-v8a/libnode.so.gz -------------------------------------------------------------------------------- /libs/android/libnode/bin/armeabi-v7a/libnode.so.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/libs/android/libnode/bin/armeabi-v7a/libnode.so.gz -------------------------------------------------------------------------------- /libs/android/libnode/bin/x86/libnode.so.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/libs/android/libnode/bin/x86/libnode.so.gz -------------------------------------------------------------------------------- /libs/android/libnode/bin/x86_64/libnode.so.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/libs/android/libnode/bin/x86_64/libnode.so.gz -------------------------------------------------------------------------------- /libs/android/libnode/include/node/libplatform/libplatform-export.h: -------------------------------------------------------------------------------- 1 | // Copyright 2016 the V8 project authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | #ifndef V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ 6 | #define V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ 7 | 8 | #if defined(_WIN32) 9 | 10 | #ifdef BUILDING_V8_PLATFORM_SHARED 11 | #define V8_PLATFORM_EXPORT __declspec(dllexport) 12 | #elif USING_V8_PLATFORM_SHARED 13 | #define V8_PLATFORM_EXPORT __declspec(dllimport) 14 | #else 15 | #define V8_PLATFORM_EXPORT 16 | #endif // BUILDING_V8_PLATFORM_SHARED 17 | 18 | #else // defined(_WIN32) 19 | 20 | // Setup for Linux shared library export. 21 | #ifdef BUILDING_V8_PLATFORM_SHARED 22 | #define V8_PLATFORM_EXPORT __attribute__((visibility("default"))) 23 | #else 24 | #define V8_PLATFORM_EXPORT 25 | #endif 26 | 27 | #endif // defined(_WIN32) 28 | 29 | #endif // V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ 30 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING: do not edit! 3 | * Generated by util/mkbuildinf.pl 4 | * 5 | * Copyright 2014-2017 The OpenSSL Project Authors. All Rights Reserved. 6 | * 7 | * Licensed under the OpenSSL license (the "License"). You may not use 8 | * this file except in compliance with the License. You can obtain a copy 9 | * in the file LICENSE in the source distribution or at 10 | * https://www.openssl.org/source/license.html 11 | */ 12 | 13 | #define PLATFORM "platform: " 14 | #define DATE "built on: Tue Apr 21 13:30:25 2020 UTC" 15 | 16 | /* 17 | * Generate compiler_flags as an array of individual characters. This is a 18 | * workaround for the situation where CFLAGS gets too long for a C90 string 19 | * literal 20 | */ 21 | static const char compiler_flags[] = { 22 | 'c','o','m','p','i','l','e','r',':',' ','c','c',' ',' ','\0' 23 | }; 24 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING: do not edit! 3 | * Generated by util/mkbuildinf.pl 4 | * 5 | * Copyright 2014-2017 The OpenSSL Project Authors. All Rights Reserved. 6 | * 7 | * Licensed under the OpenSSL license (the "License"). You may not use 8 | * this file except in compliance with the License. You can obtain a copy 9 | * in the file LICENSE in the source distribution or at 10 | * https://www.openssl.org/source/license.html 11 | */ 12 | 13 | #define PLATFORM "platform: " 14 | #define DATE "built on: Tue Apr 21 13:30:31 2020 UTC" 15 | 16 | /* 17 | * Generate compiler_flags as an array of individual characters. This is a 18 | * workaround for the situation where CFLAGS gets too long for a C90 string 19 | * literal 20 | */ 21 | static const char compiler_flags[] = { 22 | 'c','o','m','p','i','l','e','r',':',' ','c','c',' ',' ','\0' 23 | }; 24 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING: do not edit! 3 | * Generated by util/mkbuildinf.pl 4 | * 5 | * Copyright 2014-2017 The OpenSSL Project Authors. All Rights Reserved. 6 | * 7 | * Licensed under the OpenSSL license (the "License"). You may not use 8 | * this file except in compliance with the License. You can obtain a copy 9 | * in the file LICENSE in the source distribution or at 10 | * https://www.openssl.org/source/license.html 11 | */ 12 | 13 | #define PLATFORM "platform: " 14 | #define DATE "built on: Tue Apr 21 13:30:37 2020 UTC" 15 | 16 | /* 17 | * Generate compiler_flags as an array of individual characters. This is a 18 | * workaround for the situation where CFLAGS gets too long for a C90 string 19 | * literal 20 | */ 21 | static const char compiler_flags[] = { 22 | 'c','o','m','p','i','l','e','r',':',' ','c','c',' ',' ','\0' 23 | }; 24 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-x32/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-x32/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-x32/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-x32/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux-x86_64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux32-s390x/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/linux64-s390x/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #error "This file is obsolete; please update your software." 11 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/bn_conf.h: -------------------------------------------------------------------------------- 1 | #if defined(OPENSSL_NO_ASM) 2 | # include "./bn_conf_no-asm.h" 3 | #else 4 | # include "./bn_conf_asm.h" 5 | #endif 6 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/buffererr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by util/mkerr.pl DO NOT EDIT 3 | * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. 4 | * 5 | * Licensed under the OpenSSL license (the "License"). You may not use 6 | * this file except in compliance with the License. You can obtain a copy 7 | * in the file LICENSE in the source distribution or at 8 | * https://www.openssl.org/source/license.html 9 | */ 10 | 11 | #ifndef HEADER_BUFERR_H 12 | # define HEADER_BUFERR_H 13 | 14 | # ifndef HEADER_SYMHACKS_H 15 | # include 16 | # endif 17 | 18 | # ifdef __cplusplus 19 | extern "C" 20 | # endif 21 | int ERR_load_BUF_strings(void); 22 | 23 | /* 24 | * BUF function codes. 25 | */ 26 | # define BUF_F_BUF_MEM_GROW 100 27 | # define BUF_F_BUF_MEM_GROW_CLEAN 105 28 | # define BUF_F_BUF_MEM_NEW 101 29 | 30 | /* 31 | * BUF reason codes. 32 | */ 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/dso_conf.h: -------------------------------------------------------------------------------- 1 | #if defined(OPENSSL_NO_ASM) 2 | # include "./dso_conf_no-asm.h" 3 | #else 4 | # include "./dso_conf_asm.h" 5 | #endif 6 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | #undef OPENSSL_LINUX 2 | #if defined(__linux) && !defined(__ANDROID__) 3 | # define OPENSSL_LINUX 1 4 | #endif 5 | 6 | #if defined(OPENSSL_NO_ASM) 7 | # include "./opensslconf_no-asm.h" 8 | #else 9 | # include "./opensslconf_asm.h" 10 | #endif 11 | 12 | /* GOST is not included in all platform */ 13 | #ifndef OPENSSL_NO_GOST 14 | # define OPENSSL_NO_GOST 15 | #endif 16 | /* HW_PADLOCK is not included in all platform */ 17 | #ifndef OPENSSL_NO_HW_PADLOCK 18 | # define OPENSSL_NO_HW_PADLOCK 19 | #endif 20 | /* iOS app store won't allow getcontext, setcontext, makecontext */ 21 | #if defined(__APPLE__) && defined(__MACH__) 22 | # include 23 | # if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE 24 | # define OPENSSL_NO_ASYNC 25 | # endif 26 | #endif 27 | /* musl in Alpine Linux does not support getcontext etc.*/ 28 | #if defined(OPENSSL_LINUX) && !defined(__GLIBC__) && !defined(__clang__) 29 | # define OPENSSL_NO_ASYNC 30 | #endif 31 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_PEM2_H 11 | # define HEADER_PEM2_H 12 | # include 13 | #endif 14 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_RC4_H 11 | # define HEADER_RC4_H 12 | 13 | # include 14 | 15 | # ifndef OPENSSL_NO_RC4 16 | # include 17 | #ifdef __cplusplus 18 | extern "C" { 19 | #endif 20 | 21 | typedef struct rc4_key_st { 22 | RC4_INT x, y; 23 | RC4_INT data[256]; 24 | } RC4_KEY; 25 | 26 | const char *RC4_options(void); 27 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); 28 | void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, 29 | unsigned char *outdata); 30 | 31 | # ifdef __cplusplus 32 | } 33 | # endif 34 | # endif 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/openssl/ssl2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_SSL2_H 11 | # define HEADER_SSL2_H 12 | 13 | #ifdef __cplusplus 14 | extern "C" { 15 | #endif 16 | 17 | # define SSL2_VERSION 0x0002 18 | 19 | # define SSL2_MT_CLIENT_HELLO 1 20 | 21 | #ifdef __cplusplus 22 | } 23 | #endif 24 | #endif 25 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/v8-value-serializer-version.h: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the V8 project authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | /** 6 | * Compile-time constants. 7 | * 8 | * This header provides access to information about the value serializer at 9 | * compile time, without declaring or defining any symbols that require linking 10 | * to V8. 11 | */ 12 | 13 | #ifndef INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_ 14 | #define INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_ 15 | 16 | #include 17 | 18 | namespace v8 { 19 | 20 | constexpr uint32_t CurrentValueSerializerFormatVersion() { return 13; } 21 | 22 | } // namespace v8 23 | 24 | #endif // INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_ 25 | -------------------------------------------------------------------------------- /libs/android/libnode/include/node/v8-version.h: -------------------------------------------------------------------------------- 1 | // Copyright 2015 the V8 project authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | #ifndef V8_INCLUDE_VERSION_H_ // V8_VERSION_H_ conflicts with src/version.h 6 | #define V8_INCLUDE_VERSION_H_ 7 | 8 | // These macros define the version number for the current version. 9 | // NOTE these macros are used by some of the tool scripts and the build 10 | // system so their names cannot be changed without changing the scripts. 11 | #define V8_MAJOR_VERSION 7 12 | #define V8_MINOR_VERSION 8 13 | #define V8_BUILD_NUMBER 279 14 | #define V8_PATCH_LEVEL 23 15 | 16 | // Use 1 for candidates and 0 otherwise. 17 | // (Boolean macro values are not supported by all preprocessors.) 18 | #define V8_IS_CANDIDATE_VERSION 0 19 | 20 | #endif // V8_INCLUDE_VERSION_H_ 21 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/NodeMobile.xcframework.tar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/libs/ios/nodemobile/NodeMobile.xcframework.tar.zip -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/libplatform/libplatform-export.h: -------------------------------------------------------------------------------- 1 | // Copyright 2016 the V8 project authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | #ifndef V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ 6 | #define V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ 7 | 8 | #if defined(_WIN32) 9 | 10 | #ifdef BUILDING_V8_PLATFORM_SHARED 11 | #define V8_PLATFORM_EXPORT __declspec(dllexport) 12 | #elif USING_V8_PLATFORM_SHARED 13 | #define V8_PLATFORM_EXPORT __declspec(dllimport) 14 | #else 15 | #define V8_PLATFORM_EXPORT 16 | #endif // BUILDING_V8_PLATFORM_SHARED 17 | 18 | #else // defined(_WIN32) 19 | 20 | // Setup for Linux shared library export. 21 | #ifdef BUILDING_V8_PLATFORM_SHARED 22 | #define V8_PLATFORM_EXPORT __attribute__((visibility("default"))) 23 | #else 24 | #define V8_PLATFORM_EXPORT 25 | #endif 26 | 27 | #endif // defined(_WIN32) 28 | 29 | #endif // V8_LIBPLATFORM_LIBPLATFORM_EXPORT_H_ 30 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN32/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN32/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING: do not edit! 3 | * Generated by util/mkbuildinf.pl 4 | * 5 | * Copyright 2014-2017 The OpenSSL Project Authors. All Rights Reserved. 6 | * 7 | * Licensed under the OpenSSL license (the "License"). You may not use 8 | * this file except in compliance with the License. You can obtain a copy 9 | * in the file LICENSE in the source distribution or at 10 | * https://www.openssl.org/source/license.html 11 | */ 12 | 13 | #define PLATFORM "platform: " 14 | #define DATE "built on: Tue Apr 21 13:30:25 2020 UTC" 15 | 16 | /* 17 | * Generate compiler_flags as an array of individual characters. This is a 18 | * workaround for the situation where CFLAGS gets too long for a C90 string 19 | * literal 20 | */ 21 | static const char compiler_flags[] = { 22 | 'c','o','m','p','i','l','e','r',':',' ','c','c',' ',' ','\0' 23 | }; 24 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64A/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING: do not edit! 3 | * Generated by util/mkbuildinf.pl 4 | * 5 | * Copyright 2014-2017 The OpenSSL Project Authors. All Rights Reserved. 6 | * 7 | * Licensed under the OpenSSL license (the "License"). You may not use 8 | * this file except in compliance with the License. You can obtain a copy 9 | * in the file LICENSE in the source distribution or at 10 | * https://www.openssl.org/source/license.html 11 | */ 12 | 13 | #define PLATFORM "platform: " 14 | #define DATE "built on: Tue Apr 21 13:30:31 2020 UTC" 15 | 16 | /* 17 | * Generate compiler_flags as an array of individual characters. This is a 18 | * workaround for the situation where CFLAGS gets too long for a C90 string 19 | * literal 20 | */ 21 | static const char compiler_flags[] = { 22 | 'c','o','m','p','i','l','e','r',':',' ','c','c',' ',' ','\0' 23 | }; 24 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING: do not edit! 3 | * Generated by util/mkbuildinf.pl 4 | * 5 | * Copyright 2014-2017 The OpenSSL Project Authors. All Rights Reserved. 6 | * 7 | * Licensed under the OpenSSL license (the "License"). You may not use 8 | * this file except in compliance with the License. You can obtain a copy 9 | * in the file LICENSE in the source distribution or at 10 | * https://www.openssl.org/source/license.html 11 | */ 12 | 13 | #define PLATFORM "platform: " 14 | #define DATE "built on: Tue Apr 21 13:30:37 2020 UTC" 15 | 16 | /* 17 | * Generate compiler_flags as an array of individual characters. This is a 18 | * workaround for the situation where CFLAGS gets too long for a C90 string 19 | * literal 20 | */ 21 | static const char compiler_flags[] = { 22 | 'c','o','m','p','i','l','e','r',':',' ','c','c',' ',' ','\0' 23 | }; 24 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_WIN32 15 | # define DSO_EXTENSION ".dll" 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix-gcc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix-gcc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix64-gcc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/aix64-gcc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin-i386-cc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".dylib" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-aarch64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-aarch64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-armv4/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-armv4/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-elf/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-elf/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #define THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc64le/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x32/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x32/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x32/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x32/no-asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #undef SIXTY_FOUR_BIT_LONG 25 | #define SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x32/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/bn_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/bn_conf.h.in */ 3 | /* 4 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_BN_CONF_H 13 | # define OSSL_CRYPTO_BN_CONF_H 14 | 15 | /* 16 | * The contents of this file are not used in the UEFI build, as 17 | * both 32-bit and 64-bit builds are supported from a single run 18 | * of the Configure script. 19 | */ 20 | 21 | /* Should we define BN_DIV2W here? */ 22 | 23 | /* Only one for the following should be defined */ 24 | #define SIXTY_FOUR_BIT_LONG 25 | #undef SIXTY_FOUR_BIT 26 | #undef THIRTY_TWO_BIT 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x86_64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux-x86_64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux32-s390x/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux32-s390x/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux64-s390x/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/linux64-s390x/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/include/internal/dso_conf.h: -------------------------------------------------------------------------------- 1 | /* WARNING: do not edit! */ 2 | /* Generated by Makefile from include/crypto/dso_conf.h.in */ 3 | /* 4 | * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 5 | * 6 | * Licensed under the OpenSSL license (the "License"). You may not use 7 | * this file except in compliance with the License. You can obtain a copy 8 | * in the file LICENSE in the source distribution or at 9 | * https://www.openssl.org/source/license.html 10 | */ 11 | 12 | #ifndef OSSL_CRYPTO_DSO_CONF_H 13 | # define OSSL_CRYPTO_DSO_CONF_H 14 | # define DSO_DLFCN 15 | # define HAVE_DLFCN_H 16 | # define DSO_EXTENSION ".so" 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #error "This file is obsolete; please update your software." 11 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/bn_conf.h: -------------------------------------------------------------------------------- 1 | #if defined(OPENSSL_NO_ASM) 2 | # include "./bn_conf_no-asm.h" 3 | #else 4 | # include "./bn_conf_asm.h" 5 | #endif 6 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/buffererr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by util/mkerr.pl DO NOT EDIT 3 | * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. 4 | * 5 | * Licensed under the OpenSSL license (the "License"). You may not use 6 | * this file except in compliance with the License. You can obtain a copy 7 | * in the file LICENSE in the source distribution or at 8 | * https://www.openssl.org/source/license.html 9 | */ 10 | 11 | #ifndef HEADER_BUFERR_H 12 | # define HEADER_BUFERR_H 13 | 14 | # ifndef HEADER_SYMHACKS_H 15 | # include 16 | # endif 17 | 18 | # ifdef __cplusplus 19 | extern "C" 20 | # endif 21 | int ERR_load_BUF_strings(void); 22 | 23 | /* 24 | * BUF function codes. 25 | */ 26 | # define BUF_F_BUF_MEM_GROW 100 27 | # define BUF_F_BUF_MEM_GROW_CLEAN 105 28 | # define BUF_F_BUF_MEM_NEW 101 29 | 30 | /* 31 | * BUF reason codes. 32 | */ 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/dso_conf.h: -------------------------------------------------------------------------------- 1 | #if defined(OPENSSL_NO_ASM) 2 | # include "./dso_conf_no-asm.h" 3 | #else 4 | # include "./dso_conf_asm.h" 5 | #endif 6 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | #undef OPENSSL_LINUX 2 | #if defined(__linux) && !defined(__ANDROID__) 3 | # define OPENSSL_LINUX 1 4 | #endif 5 | 6 | #if defined(OPENSSL_NO_ASM) 7 | # include "./opensslconf_no-asm.h" 8 | #else 9 | # include "./opensslconf_asm.h" 10 | #endif 11 | 12 | /* GOST is not included in all platform */ 13 | #ifndef OPENSSL_NO_GOST 14 | # define OPENSSL_NO_GOST 15 | #endif 16 | /* HW_PADLOCK is not included in all platform */ 17 | #ifndef OPENSSL_NO_HW_PADLOCK 18 | # define OPENSSL_NO_HW_PADLOCK 19 | #endif 20 | /* iOS app store won't allow getcontext, setcontext, makecontext */ 21 | #if defined(__APPLE__) && defined(__MACH__) 22 | # include 23 | # if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE 24 | # define OPENSSL_NO_ASYNC 25 | # endif 26 | #endif 27 | /* musl in Alpine Linux does not support getcontext etc.*/ 28 | #if defined(OPENSSL_LINUX) && !defined(__GLIBC__) && !defined(__clang__) 29 | # define OPENSSL_NO_ASYNC 30 | #endif 31 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_PEM2_H 11 | # define HEADER_PEM2_H 12 | # include 13 | #endif 14 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_RC4_H 11 | # define HEADER_RC4_H 12 | 13 | # include 14 | 15 | # ifndef OPENSSL_NO_RC4 16 | # include 17 | #ifdef __cplusplus 18 | extern "C" { 19 | #endif 20 | 21 | typedef struct rc4_key_st { 22 | RC4_INT x, y; 23 | RC4_INT data[256]; 24 | } RC4_KEY; 25 | 26 | const char *RC4_options(void); 27 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); 28 | void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, 29 | unsigned char *outdata); 30 | 31 | # ifdef __cplusplus 32 | } 33 | # endif 34 | # endif 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/openssl/ssl2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #ifndef HEADER_SSL2_H 11 | # define HEADER_SSL2_H 12 | 13 | #ifdef __cplusplus 14 | extern "C" { 15 | #endif 16 | 17 | # define SSL2_VERSION 0x0002 18 | 19 | # define SSL2_MT_CLIENT_HELLO 1 20 | 21 | #ifdef __cplusplus 22 | } 23 | #endif 24 | #endif 25 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/v8-value-serializer-version.h: -------------------------------------------------------------------------------- 1 | // Copyright 2017 the V8 project authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | /** 6 | * Compile-time constants. 7 | * 8 | * This header provides access to information about the value serializer at 9 | * compile time, without declaring or defining any symbols that require linking 10 | * to V8. 11 | */ 12 | 13 | #ifndef INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_ 14 | #define INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_ 15 | 16 | #include 17 | 18 | namespace v8 { 19 | 20 | constexpr uint32_t CurrentValueSerializerFormatVersion() { return 13; } 21 | 22 | } // namespace v8 23 | 24 | #endif // INCLUDE_V8_VALUE_SERIALIZER_VERSION_H_ 25 | -------------------------------------------------------------------------------- /libs/ios/nodemobile/include/node/v8-version.h: -------------------------------------------------------------------------------- 1 | // Copyright 2015 the V8 project authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | #ifndef V8_INCLUDE_VERSION_H_ // V8_VERSION_H_ conflicts with src/version.h 6 | #define V8_INCLUDE_VERSION_H_ 7 | 8 | // These macros define the version number for the current version. 9 | // NOTE these macros are used by some of the tool scripts and the build 10 | // system so their names cannot be changed without changing the scripts. 11 | #define V8_MAJOR_VERSION 7 12 | #define V8_MINOR_VERSION 8 13 | #define V8_BUILD_NUMBER 279 14 | #define V8_PATCH_LEVEL 23 15 | 16 | // Use 1 for candidates and 0 otherwise. 17 | // (Boolean macro values are not supported by all preprocessors.) 18 | #define V8_IS_CANDIDATE_VERSION 0 19 | 20 | #endif // V8_INCLUDE_VERSION_H_ 21 | -------------------------------------------------------------------------------- /src/common/cordova-bridge/cordova-bridge.h: -------------------------------------------------------------------------------- 1 | /* 2 | Node.js for Mobile Apps Cordova plugin. 3 | 4 | The bridge APIs between the Cordova plugin and the Node.js engine. 5 | */ 6 | 7 | #ifndef CORDOVA_BRIDGE_H_ 8 | #define CORDOVA_BRIDGE_H_ 9 | 10 | typedef void (*t_bridge_callback)(const char* channelName, const char* message); 11 | void RegisterBridgeCallback(t_bridge_callback); 12 | void SendMessageToNodeChannel(const char* channelName, const char* message); 13 | void RegisterNodeDataDirPath(const char* path); 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /src/ios/CDVNodeJS.hh: -------------------------------------------------------------------------------- 1 | /* 2 | Node.js for Mobile Apps Cordova plugin. 3 | 4 | The plugin APIs exposed to the Cordova layer. 5 | */ 6 | 7 | #import 8 | 9 | @interface CDVNodeJS : CDVPlugin 10 | {} 11 | 12 | @property NSString* allChannelsListenerCallbackId; 13 | 14 | + (CDVNodeJS*) activeInstance; 15 | 16 | - (void) setAllChannelsListener:(CDVInvokedUrlCommand*)command; 17 | 18 | - (void) sendMessageToNode:(CDVInvokedUrlCommand*)command; 19 | 20 | - (void) startEngine:(CDVInvokedUrlCommand*)command; 21 | 22 | - (void) startEngineWithScript:(CDVInvokedUrlCommand*)command; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /src/ios/NodeJSRunner.hh: -------------------------------------------------------------------------------- 1 | /* 2 | Node.js for Mobile Apps Cordova plugin. 3 | 4 | The API to start the Node.js engine from the Cordova plugin native code. 5 | */ 6 | 7 | @interface NodeJSRunner : NSObject 8 | {} 9 | 10 | + (void) startEngineWithArguments:(NSArray*)arguments; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /testapp/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | !/plugins 3 | !/plugins/android.json 4 | !/plugins/fetch.json 5 | plugins/* 6 | platforms/* 7 | node_modules/* 8 | www/nodejs-project/* 9 | temp-module-copy/* 10 | .DS_Store 11 | -------------------------------------------------------------------------------- /testapp/copy-module-from-parent.js: -------------------------------------------------------------------------------- 1 | const copy = require('recursive-copy'); 2 | const path = require('path'); 3 | 4 | var appProjectRoot = __dirname; 5 | var modulePath = path.join(appProjectRoot, '..'); 6 | 7 | var options = { 8 | overwrite: true, 9 | dot: true, 10 | filter: (src) => { 11 | // So the app doesn't copy the module's node_modules nor itself. 12 | return (!src.startsWith('node_modules') && !src.startsWith('testapp')); 13 | } 14 | }; 15 | 16 | copy(modulePath, 17 | path.join(appProjectRoot,'temp-module-copy'), 18 | options 19 | ).then( () => console.log("Module from parent folder copied successfully.") ) 20 | .catch ( err => console.log("Error while copying module from parent folder: " + err) ); 21 | -------------------------------------------------------------------------------- /testapp/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.example.cordovatestapp", 3 | "displayName": "CordovaTestApp", 4 | "version": "1.0.0", 5 | "description": "A Cordova application to quickly setup and run the nodejs-mobile tests.", 6 | "main": "index.js", 7 | "author": "janeasystems", 8 | "license": "MIT", 9 | "scripts": { 10 | "copy-module": "node copy-module-from-parent.js" 11 | }, 12 | "dependencies": { 13 | "cordova-android": "^9.0.0", 14 | "cordova-ios": "^6.2.0", 15 | "cordova-plugin-whitelist": "^1.3.4", 16 | "recursive-copy": "^2.0.9" 17 | }, 18 | "cordova": { 19 | "plugins": { 20 | "cordova-plugin-whitelist": {}, 21 | "nodejs-mobile-cordova": {}, 22 | "nodejs-mobile-cordova-tests": {} 23 | }, 24 | "platforms": [ 25 | "android", 26 | "ios" 27 | ] 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /testapp/res/icon/android/icon-36-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/icon/android/icon-36-ldpi.png -------------------------------------------------------------------------------- /testapp/res/icon/android/icon-48-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/icon/android/icon-48-mdpi.png -------------------------------------------------------------------------------- /testapp/res/icon/android/icon-72-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/icon/android/icon-72-hdpi.png -------------------------------------------------------------------------------- /testapp/res/icon/android/icon-96-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/icon/android/icon-96-xhdpi.png -------------------------------------------------------------------------------- /testapp/res/icon/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/icon/ios/icon-57-2x.png -------------------------------------------------------------------------------- /testapp/res/icon/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/icon/ios/icon-57.png -------------------------------------------------------------------------------- /testapp/res/icon/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/icon/ios/icon-72-2x.png -------------------------------------------------------------------------------- /testapp/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /testapp/res/screen/android/screen-hdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/android/screen-hdpi-landscape.png -------------------------------------------------------------------------------- /testapp/res/screen/android/screen-hdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/android/screen-hdpi-portrait.png -------------------------------------------------------------------------------- /testapp/res/screen/android/screen-ldpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/android/screen-ldpi-landscape.png -------------------------------------------------------------------------------- /testapp/res/screen/android/screen-ldpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/android/screen-ldpi-portrait.png -------------------------------------------------------------------------------- /testapp/res/screen/android/screen-mdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/android/screen-mdpi-landscape.png -------------------------------------------------------------------------------- /testapp/res/screen/android/screen-mdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/android/screen-mdpi-portrait.png -------------------------------------------------------------------------------- /testapp/res/screen/android/screen-xhdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/android/screen-xhdpi-landscape.png -------------------------------------------------------------------------------- /testapp/res/screen/android/screen-xhdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/android/screen-xhdpi-portrait.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-ipad-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-ipad-landscape-2x.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-ipad-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-ipad-landscape.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-ipad-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-ipad-portrait-2x.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-ipad-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-ipad-portrait.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-iphone-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-iphone-landscape-2x.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-iphone-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-iphone-landscape.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-iphone-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-iphone-portrait-2x.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-iphone-portrait-568h-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-iphone-portrait-568h-2x.png -------------------------------------------------------------------------------- /testapp/res/screen/ios/screen-iphone-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/res/screen/ios/screen-iphone-portrait.png -------------------------------------------------------------------------------- /testapp/www/jasmine-2.4.1/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs-mobile/nodejs-mobile-cordova/69b0122c0910d308ecdd9b0b7771fcf195a5b44b/testapp/www/jasmine-2.4.1/jasmine_favicon.png -------------------------------------------------------------------------------- /testapp/www/js/manual.js: -------------------------------------------------------------------------------- 1 | function createActionButton (title, callback, appendTo) { 2 | appendTo = appendTo || 'buttons'; 3 | var buttons = document.getElementById(appendTo); 4 | var paragraph = document.createElement('p'); 5 | var button = document.createElement('button'); 6 | button.textContent = title; 7 | button.onclick = function (e) { 8 | e.preventDefault(); 9 | callback(); 10 | }; 11 | paragraph.appendChild(button); 12 | buttons.appendChild(paragraph); 13 | } 14 | 15 | document.addEventListener('deviceready', function () { 16 | 'use strict'; 17 | 18 | var contentEl = document.getElementById('content'); 19 | 20 | cordova.require('nodejs-mobile-cordova-tests.tests').defineManualTests(contentEl, createActionButton); // eslint-disable-line no-undef 21 | 22 | }); 23 | 24 | -------------------------------------------------------------------------------- /tests/hooks/both/install-nodejs-test-project.js: -------------------------------------------------------------------------------- 1 | const fse = require('fs-extra'); 2 | const path = require('path'); 3 | 4 | module.exports = function(context) 5 | { 6 | var projectRoot = context.opts.projectRoot; 7 | var pluginRoot = context.opts.plugin.dir; 8 | 9 | return new Promise((resolve, reject) => { 10 | fse.copy(path.join(pluginRoot,'nodejs-project'),path.join(projectRoot,'www','nodejs-project')) 11 | .then( () => resolve() ) 12 | .catch ( err => reject(err) ); 13 | }); 14 | } 15 | -------------------------------------------------------------------------------- /tests/nodejs-project/node-tests/echo.js: -------------------------------------------------------------------------------- 1 | const cordova = require('cordova-bridge'); 2 | const TestBase = require('./test-base'); 3 | 4 | let testName = 'echo'; 5 | 6 | class TestEcho extends TestBase { 7 | // Resends the received arguments through the echo channel. Used by many tests where node side verifications don't matter. 8 | static prepare() { 9 | super.prepare(testName, (...args) => { cordova.channel.post('echo', ...args); } ); 10 | } 11 | static cleanUp() { 12 | super.cleanUp(testName); 13 | } 14 | } 15 | 16 | module.exports = TestEcho; 17 | -------------------------------------------------------------------------------- /tests/nodejs-project/node-tests/node-stress-channel.js: -------------------------------------------------------------------------------- 1 | const cordova = require('cordova-bridge'); 2 | const TestBase = require('./test-base'); 3 | const assert = require('assert'); 4 | 5 | let testName = 'node-stress-channel'; 6 | 7 | class TestNodeStressChannel extends TestBase { 8 | // Node side class to stress the channel. 9 | // Used by the manual "stress node-cordova channel" 10 | static prepare() { 11 | let num_msgs_sent = 0; 12 | super.prepare(testName, (num_msgs) => { 13 | for(let i=0;i 4 | Node.js for Mobile Apps Cordova plugin tests 5 | MIT 6 | 7 | 8 | 9 | --------------------------------------------------------------------------------