react-native-quick-crypto 0.7.14 → 0.7.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -112,7 +112,8 @@ android {
112
112
  externalNativeBuild {
113
113
  cmake {
114
114
  cppFlags "-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -DANDROID"
115
- arguments "-DANDROID_STL=c++_shared"
115
+ arguments "-DANDROID_STL=c++_shared",
116
+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON"
116
117
  abiFilters (*reactNativeArchitectures())
117
118
  }
118
119
  }
package/cpp/MGLKeys.cpp CHANGED
@@ -806,7 +806,6 @@ KeyObjectData::KeyObjectData(KeyType type,
806
806
 
807
807
  std::shared_ptr<KeyObjectData> KeyObjectData::CreateSecret(ByteSource key)
808
808
  {
809
- CHECK(key);
810
809
  return std::shared_ptr<KeyObjectData>(new KeyObjectData(std::move(key)));
811
810
  }
812
811
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-quick-crypto",
3
- "version": "0.7.14",
3
+ "version": "0.7.16",
4
4
  "description": "A fast implementation of Node's `crypto` module written in C/C++ JSI",
5
5
  "packageManager": "bun@1.1.26",
6
6
  "main": "lib/commonjs/index",