# react-native-aes-gcm-modified

> Enable the usage of aes gcm for your mobile application

Latest version **0.1.2** (published 2021-08-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-native-aes-gcm-modified
pnpm add react-native-aes-gcm-modified
yarn add react-native-aes-gcm-modified
bun add react-native-aes-gcm-modified
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2021-08-17 |
| First published | 2021-07-26 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 27.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Hak Wee |
| Maintainers | gruntultra |
| Keywords | react-native, ios, android |

## Links

- npm: https://www.npmjs.com/package/react-native-aes-gcm-modified
- Repository: https://github.com/gruntultra/react-native-aes-gcm-modified
- Homepage: https://github.com/gruntultra/react-native-aes-gcm-modified#readme
- Issues: https://github.com/gruntultra/react-native-aes-gcm-modified/issues
- npm.io page: https://npm.io/package/react-native-aes-gcm-modified

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 0.1.2 (latest) — 2021-08-17
- 0.1.1 — 2021-08-11
- 0.1.0 — 2021-07-26

## README

# react-native-aes-gcm-modified

Enable the usage of aes gcm for your mobile application

## Installation

```sh
npm install react-native-aes-gcm-modified
```

## Usage

```js
import AesGcmModified from "react-native-aes-gcm-modified";


```
### Encrypt data

```ts
function encrypt(
  plainText: string,
  inBinary: boolean,
  key: string
): Promise<EncryptedData>;
```

### Decrypt data

```ts
function decrypt(
  base64Ciphertext: string,
  key: string,
  isBinary: boolean
): Promise<string>;
```

## Contributing

See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

## License

MIT

---
_Source: https://npm.io/package/react-native-aes-gcm-modified · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
