
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-aes-pack
Advanced tools
AES-CBC-PKCS5Padding
npm i --S react-native-aes-pack
For iOS run pod install
npm i --S react-native-aes-pack
react native link react-native-aes-pack
| Name | Type | Note |
|---|---|---|
| sourceText | string | plaintxt |
| secretKey | string | secret key,max 16 bytes |
| iv | string | initialization vector,max 16 bytes |
| Name | Type | Note |
|---|---|---|
| sourceText | string | cipher txt |
| secretKey | string | secret key,max 16 bytes |
| iv | string | initialization vector,max 16 bytes |
import AesCrypto from 'react-native-aes-pack';
const plaintxt = 'test';
const secretKey = '0102030405060708';
const iv = '1112131415161718';
AesCrypto.encrypt(plaintxt,secretKey,iv).then(cipher=>{
console.log(cipher);// return a string type cipher
this.setState({ cipher });
}).catch(err=>{
console.log(err);
});
AesCrypto.decrypt(this.state.cipher,secretKey,iv).then(plaintxt=>{
console.log(plaintxt);// return a string type plaintxt
}).catch(err=>{
console.log(err);
});
FAQs
AES-CBC-PKCS5Padding
We found that react-native-aes-pack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.