SDKs
Java SDK
You can use our Java SDK to:
- Encrypt data server-side
- Decrypt data server-side
- Invoke Functions
- Proxy requests through Relay
Encrypting/Decrypting data with our backend SDKs instead of Relay may expose you to greater compliance burden because because your server handles plaintext data.
Instead you can:
- Use a Relay to encrypt data before it reaches your server.
- Use our client-side SDKs to encrypt data before sending it to your server.
Quickstart
Install SDK
First, let's install the Evervault SDK using either gradle
or maven
.
Initialize SDK
Now, let's initialize the SDK using our App's ID and API key. If you don't have one yet, you can get one by creating an App in the Evervault Dashboard.
Evervault CA
To allow automatic outbound interception with Relay, the Evervault Root CA certificate must be added to the JVM keystore.
This step is optional, and is only required if you plan on using Relay as a HTTP CONNECT proxy in Java. If you are not using Relay (or plan on using a Relay URL to proxy requests) this step can be skipped.
Encrypt a string
Now that the SDK is initialized, we can encrypt a string.
Decrypt data
decrypt()
will decrypt data previously encrypted with the encrypt()
function or through Relay. It will also deserialise the data into an object of a specified type.
Reference
Evervault()
The SDK constructor accepts the following parameters:
- Your App's ID
- Your App's API key
Example
Parameters
evervault.encrypt(data)
Encrypts data using Evervault Encryption. Evervault Strings can be used across all of our Primitives.
To encrypt data using the Java SDK, simply pass a value into the evervault.encrypt()
function. encrypt()
will encrypt your data and return an object which is a String
in case you passed a literal type like bool
, String
, int
, float
, char
, byte
.
The encrypted data can be stored in your database as normal and can be used with any of Evervault’s other services.
evervault.decrypt(data)
Decrypts data previously encrypted using the encrypt()
function or through Relay (Evervault's encryption proxy).
An API key with the decrypt
permission must be used to perform this operation.
Parameters
evervault.createClientSideDecryptToken(payload, expiry)
Client Side Decrypt Tokens are versatile and short-lived tokens that frontend applications can utilise to decrypt data previously encrypted through Evervault. Client Side Decrypt Tokens are restricted to specific payloads.
By default, a Client Side Decrypt Token will live for 5 minutes into the future. The maximum time to live of the token is 10 minutes into the future.
Parameters
evervault.run(functionName, payload, responseType)
Lets you invoke an Evervault Function with a given payload.
Parameters
Response
The function result will be deserialized into an instance of responseType
and will be returned.
evervault.createRunToken(functionName, data)
Creates a single use, time bound token (5 minutes) for invoking an Evervault Function with a given payload.
Run Tokens can be used to invoke an Evervault Function client-side without providing a sensitive API Key.
Parameters
Response
An instance of the class RunToken
is returned. The token is available under the token
property.
Run Tokens can then be used to authenticate Function runs from the client-side.