# addEncryptionInstance

Adds an encryption implementation to the EncryptionHandler.

### Usage

```ts
encryptionHandler.addEncryptionInstance(encryptionImpl);
```

### Returns

`void`

This method does not return a value. Instead, it updates the internal state of the EncryptionHandler by adding the provided encryption instance.

### Parameters

#### encryptionInstance

* **Type** `Encryption`

The encryption implementation that provides the necessary methods to encrypt and decrypt data.
