Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Key Management Service
  • Getting started
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication with the API
      • Overview
        • Overview
        • Encrypt
        • Decrypt
        • ReEncrypt
        • GenerateDataKey
  • Monitoring metrics
  • Audit Trails events
  • FAQ

In this article:

  • HTTP request
  • Path parameters
  • Body parameters
  • Response
  1. API reference
  2. REST
  3. SymmetricCrypto
  4. Encrypt

Key Management Service API, REST: SymmetricCrypto.Encrypt

Written by
Yandex Cloud
Updated at November 26, 2024
  • HTTP request
  • Path parameters
  • Body parameters
  • Response

Encrypts given plaintext with the specified key.

HTTP requestHTTP request

POST https://kms.yandex/kms/v1/keys/{keyId}:encrypt

Path parametersPath parameters

Field

Description

keyId

string

Required field. ID of the symmetric KMS key to use for encryption.

Body parametersBody parameters

{
  "versionId": "string",
  "aadContext": "string",
  "plaintext": "string"
}

Field

Description

versionId

string

ID of the key version to encrypt plaintext with.
Defaults to the primary version if not specified.

aadContext

string (bytes)

Additional authenticated data (AAD context), optional.
If specified, this data will be required for decryption with the SymmetricDecryptRequest.
Should be encoded with base64.

plaintext

string (bytes)

Required field. Plaintext to be encrypted.
Should be encoded with base64.

ResponseResponse

HTTP Code: 200 - OK

{
  "keyId": "string",
  "versionId": "string",
  "ciphertext": "string"
}

Field

Description

keyId

string

Required field. ID of the symmetric KMS key that was used for encryption.

versionId

string

ID of the key version that was used for encryption.

ciphertext

string (bytes)

Resulting ciphertext.

Was the article helpful?

Previous
Overview
Next
Decrypt
Yandex project
© 2025 Yandex.Cloud LLC