# Encrypt User Defaults

This API allows you to set whether data stored by the SDK in user defaults should be encrypted or not. Values stored in user defaults are encrypted by default. Set this property to false to override this behavior and store values as plaintext instead.

{% hint style="info" %}
📘 App Launch Time

While the impact of the SDK on app launch time is minimal, setting this property to false will reduce it even further, at the tradeoff of storing some data locally as plaintext.
{% endhint %}

{% tabs fullWidth="true" %}
{% tab title="iOS - Swift" %}

```swift
Luciq.userDefaultsEncryptionEnabled = false
```

{% endtab %}

{% tab title="iOS - ObjC" %}

```objectivec
Luciq.userDefaultsEncryptionEnabled = NO;
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.luciq.ai/references/other/encrypt-user-defaults.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
