Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stringcare/stringcare

Flutter plugin to work with secured resources and data. Obfuscate and reveal any resource file, Strings, and Uint8List with C++ (all platforms support).
https://github.com/stringcare/stringcare

android encrypt-data encrypt-files encrypt-secrets encrypt-strings encryption encryption-decryption flutter flutter-plugin flutter-secure-storage flutter-security ios linux macos obfuscation resources uint8list web windows

Last synced: about 1 month ago
JSON representation

Flutter plugin to work with secured resources and data. Obfuscate and reveal any resource file, Strings, and Uint8List with C++ (all platforms support).

Awesome Lists containing this project

README

        

[![pub package](https://img.shields.io/pub/v/stringcare.svg)](https://pub.dev/packages/stringcare)

Stringcare Flutter


A Landa dependency

Flutter plugin for encrypt/decrypt `String` and `Uint8List` objects easily with C++ code.

| | Android | iOS | [Web](https://flutter.dev/web) | [macOS](https://flutter.dev/desktop) | [Windows](https://flutter.dev/desktop) | [Linux](https://flutter.dev/desktop) | [Fuchsia](https://fuchsia.dev/) |
| :-------------: | :-------------:| :-----: | :-----: | :-----: | :-----: | :-----: | :-----: |
| Status | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | ❌ |
| Language | C++ | C++ | Dart | C++ | C++ | C++ | |

-----

Retrieve any string resource quickly and easily, anywhere:

`en.json`

```json
{
"hello_there": "Hello there!"
}
```

```dart
R.strings.hello_there.string();
```

Simplify the way you work with secured resources, Strings and Uint8List objects:

```dart
"my_secret".obfuscate();
```

-----

### [Home](https://github.com/StringCare/stringcare/wiki)

### [Basic setup, not secured](https://github.com/StringCare/stringcare/wiki/Basic-setup,-not-secured)

[- iOS macOS Setup](https://github.com/StringCare/stringcare/wiki/Basic-setup,-not-secured#ios-and-macos-setup)

### [Secured Setup](https://github.com/StringCare/stringcare/wiki/Secured-Setup)

[- Prepare your private repository](https://github.com/StringCare/stringcare/wiki/Secured-Setup#prepare-your-private-repository)

[- iOS macOS Setup](https://github.com/StringCare/stringcare/wiki/Secured-Setup#ios-and-macos-setup)

[- Key Setup](https://github.com/StringCare/stringcare/wiki/Secured-Setup#key-setup)

[- Finish The Setup](https://github.com/StringCare/stringcare/wiki/Secured-Setup#finish-the-setup)

### [String Usage](https://github.com/StringCare/stringcare/wiki/String-Usage)

[- Simple Usage](https://github.com/StringCare/stringcare/wiki/String-Usage#simple-usage)

[- With Extra Keys](https://github.com/StringCare/stringcare/wiki/String-Usage#with-extra-keys)

### [Uint8List Usage](https://github.com/StringCare/stringcare/wiki/Uint8List-Usage)

[- Simple Usage](https://github.com/StringCare/stringcare/wiki/Uint8List-Usage#simple-usage)

[- With Extra Keys](https://github.com/StringCare/stringcare/wiki/Uint8List-Usage#with-extra-keys)

### [i18n](https://github.com/StringCare/stringcare/wiki/i18n)

[- Project Configuration](https://github.com/StringCare/stringcare/wiki/i18n#project-configuration)

[- Locales](https://github.com/StringCare/stringcare/wiki/i18n#locales)

[- I18n Configuration](https://github.com/StringCare/stringcare/wiki/i18n#i18n-configuration)

[- Usage](https://github.com/StringCare/stringcare/wiki/i18n#usage)

### [Assets](https://github.com/StringCare/stringcare/wiki/Assets)

[- Project Configuration](https://github.com/StringCare/stringcare/wiki/Assets#project-configuration)

[- Simple Usage](https://github.com/StringCare/stringcare/wiki/Assets#simple-usage)

[- Assets Images Usage](https://github.com/StringCare/stringcare/wiki/Assets#assets-images-usage)

[- Svg Assets Images Usage](https://github.com/StringCare/stringcare/wiki/Assets#svg-assets-images-usage)

-----