> For the complete documentation index, see [llms.txt](https://docs.eueno.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eueno.io/eueno-libraries/eueno-lib-node/decrypt-get-key-aes.md).

# Decrypt Get Key Aes

#### &#x20;           eueno.decryptGetKeyAesWithPriKeyWallet(encryptedKey,walletPrivateKey)

#### Example

```
const Eueno = require('@eueno/lib-node');

async function example() {
  const eueno = new Eueno({
    endpoint: 'https://v2-developers.eueno.io',
  });

  data = await eueno.decryptGetKeyAesWithPriKeyWallet(encryptedKey,walletPrivateKey);
  console.log(data);
}

example();

```

## Parameters

<table><thead><tr><th width="190">Name</th><th width="107">Type</th><th width="119">Required</th><th>Description</th></tr></thead><tbody><tr><td>encryptedKey</td><td>String</td><td>Yes</td><td>Encrypt key </td></tr><tr><td>walletPrivateKey</td><td>String</td><td>Yes</td><td>wallet private key of owner data</td></tr></tbody></table>
