Class Encrypt.Request
java.lang.Object
io.helidon.integrations.common.rest.ApiJsonBuilder<Encrypt.Request>
io.helidon.integrations.common.rest.ApiJsonRequest<Encrypt.Request>
io.helidon.integrations.vault.VaultRequest<Encrypt.Request>
io.helidon.integrations.vault.secrets.transit.Encrypt.Request
- All Implemented Interfaces:
- ApiRequest<Encrypt.Request>
- Enclosing class:
- Encrypt
Request object. Can be configured with additional headers, query parameters etc.
- 
Method SummaryModifier and TypeMethodDescriptionstatic Encrypt.Requestbuilder()Fluent API builder for configuring a request.context(Base64Value value) Specifies the context for key derivation.convergentEncryption(String convergent) This parameter will only be used when a key is expected to be created.data(Base64Value value) The data to encrypt.encryptionKeyName(String encryptionKeyName) Specifies the name of the encryption key to encrypt against.encryptionKeyType(String type) This parameter is required when encryption key is expected to be created.encryptionKeyVersion(int version) Specifies the version of the key to use for encryption.nonce(Base64Value value) Specifies the nonce value.Methods inherited from class io.helidon.integrations.vault.VaultRequestadd, addCommaDelimitedArray, addToCommaDelimitedArray, durationToTtl, preBuildMethods inherited from class io.helidon.integrations.common.rest.ApiJsonRequestaddHeader, addQueryParam, headers, queryParams, requestId, requestId, requestMediaType, requestMediaType, responseMediaType, responseMediaTypeMethods inherited from class io.helidon.integrations.common.rest.ApiJsonBuilderadd, add, add, add, add, add, addBase64, addToArray, addToArray, addToArray, addToArray, addToArray, addToArray, addToObject, addToObject, addToObject, addToObject, addToObject, emptyArray, me, postBuild, toJsonMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.helidon.integrations.common.rest.ApiRequesttoJson
- 
Method Details- 
builderFluent API builder for configuring a request. The request builder is passed as is, without a build method. The equivalent of a build method isApiJsonBuilder.toJson(jakarta.json.JsonBuilderFactory)used by theRestApi.- Returns:
- new request builder
 
- 
encryptionKeyNameSpecifies the name of the encryption key to encrypt against. Required.- Parameters:
- encryptionKeyName- name of the key
- Returns:
- updated request
 
- 
encryptionKeyVersionSpecifies the version of the key to use for encryption. If not set, uses the latest version. Must be greater than or equal to the key'smin_encryption_version, if set. Optional.- Parameters:
- version- key version
- Returns:
- updated request
 
- 
encryptionKeyTypeThis parameter is required when encryption key is expected to be created. When performing an upsert operation, the type of key to create.Defaults to aes256-gcm96.- Parameters:
- type- type of the encryption key
- Returns:
- updated request
 
- 
convergentEncryptionThis parameter will only be used when a key is expected to be created. Whether to support convergent encryption. This is only supported when using a key with key derivation enabled and will require all requests to carry both a context and 96-bit (12-byte) nonce. The given nonce will be used in place of a randomly generated nonce. As a result, when the same context and nonce are supplied, the same ciphertext is generated. It is very important when using this mode that you ensure that all nonces are unique for a given context. Failing to do so will severely impact the ciphertext's security.- Parameters:
- convergent- convergent encryption
- Returns:
- updated request
 
- 
dataThe data to encrypt.- Parameters:
- value- value to encrypt
- Returns:
- updated request
- See Also:
 
- 
contextSpecifies the context for key derivation. This is required if key derivation is enabled for this key.- Parameters:
- value- context
- Returns:
- updated request
 
- 
nonceSpecifies the nonce value. This must be provided if convergent encryption is enabled for this key and the key was generated with Vault 0.6.1. Not required for keys created in 0.6.2+. The value must be exactly 96 bits (12 bytes) long and the user must ensure that for any given context (and thus, any given encryption key) this nonce value is never reused.- Parameters:
- value- nonce
- Returns:
- updated request
 
 
-