Alibaba Cloud KMS SDK for Python2
=================================
.. figure:: https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg
:alt: image0
image0
Alibaba Cloud KMS SDK for Python2 can help Python developers to use the
KMS.
*Read this in other
languages:*\ `English <README.rst>`__\ *,*\ `简体中文 <README.zh-cn.rst>`__
- `Alibaba Cloud KMS
Homepage <https://www.alibabacloud.com/help/zh/doc-detail/311016.htm>`__
- `Sample Code </example>`__
- `Issues <https://github.com/aliyun/alibabacloud-kms-kms20160120-python2-sdk/issues>`__
- `Release <https://github.com/aliyun/alibabacloud-kms-kms20160120-python2-sdk/releases>`__
Requirements
------------
- Python 2.7.15 or later
Install
-------
::
pip install alibabacloud-kms-python2-sdk
Introduction to KMS Client
+--------------------------+---------------------+---------------------+
| KMS client classes | Introduction | Usage scenarios |
+==========================+=====================+=====================+
| alibabacloud_kms_k | KMS resource | 1. Scenarios where |
| ms20160120.client.Client | management and key | key operations are |
| | operations for KMS | performed only |
| | instance gateways | through VPC |
| | are supported | gateways. 2. KMS |
| | | resource management |
| | | scenarios that only |
| | | use public |
| | | gateways. 3. |
| | | Scenarios where you |
| | | want to perform key |
| | | operations through |
| | | VPC gateways and |
| | | manage KMS |
| | | resources through |
| | | public gateways. |
+--------------------------+---------------------+---------------------+
| al | Users can migrate | Users who use |
| ibabacloud_kms_kms201601 | from KMS 1.0 key | Alibaba Cloud SDK |
| 20.client.TransferClient | operations to KMS | to access KMS 1.0 |
| | 3.0 key operations | key operations need |
| | | to migrate to KMS |
| | | 3.0 |
+--------------------------+---------------------+---------------------+
Sample code
-----------
1. Scenarios where key operations are performed only through VPC gateways.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Refer to the following sample code to call the KMS AdvanceEncrypt API. For more API examples, see\ `operation samples <./example/operation>`__
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code:: python
# -*- coding: utf-8 -*-
# This file is auto-generated, don't edit it. Thanks.
from __future__ import unicode_literals
import sys
from openapi import models as dedicated_kms_openapi_models
from alibabacloud_kms_kms20160120.client import Client as KmsSdkClient
from sdk import models as dedicated_kms_sdk_models
from alibabacloud_tea_util.client import Client as UtilClient
import os
class AdvanceEncrypt(object):
def __init__(self):
pass
@staticmethod
def create_kms_instance_config(client_key_file, password, endpoint, ca_file_path):
config = dedicated_kms_openapi_models.Config(
client_key_file=client_key_file,
password=password,
endpoint=endpoint,
ca_file_path=ca_file_path
)
return config
@staticmethod
def create_client(kms_instance_config):
return KmsSdkClient(kms_instance_config=kms_instance_config)
@staticmethod
def advance_encrypt(client, key_id, plaintext):
request = dedicated_kms_sdk_models.AdvanceEncryptRequest(
key_id=key_id,
plaintext=plaintext
)
return client.advance_encrypt(request)
@staticmethod
def main(args):
kms_instance_config = AdvanceEncrypt.create_kms_instance_config(os.getenv('your client key file path env'), os.getenv('your client key password env'), 'your kms instance endpoint', 'your ca file path')
client = AdvanceEncrypt.create_client(kms_instance_config)
key_id = 'your keyId'
plaintext = UtilClient.to_bytes('your plaintext')
response = AdvanceEncrypt.advance_encrypt(client, key_id, plaintext)
print response
if __name__ == '__main__':
AdvanceEncrypt.main(sys.argv[1:])
2. KMS resources are managed only through public gateways.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Refer to the following sample code to call the KMS CreateKey API. For more API examples, see\ `manage samples <./example/manage>`__
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code:: python
# -*- coding: utf-8 -*-
# This file is auto-generated, don't edit it. Thanks.
from __future__ import unicode_literals
import sys
from alibabacloud_tea_openapi import models as open_api_models
from alibabacloud_kms_kms20160120.client import Client as KmsSdkClient
from alibabacloud_kms20160120 import models as kms_20160120_models
import os
class CreateKey(object):
def __init__(self):
pass
@staticmethod
def create_open_api_config(access_key_id, access_key_secret, region_id):
config = open_api_models.Config(
access_key_id=access_key_id,
access_key_secret=access_key_secret,
region_id=region_id
)
return config
@staticmethod
def create_client(open_api_config):
return KmsSdkClient(open_api_config=open_api_config)
@staticmethod
def create_key(client, enable_automatic_rotation, rotation_interval, key_usage, origin, description, dkmsinstance_id, protection_level, key_spec):
request = kms_20160120_models.CreateKeyRequest(
enable_automatic_rotation=enable_automatic_rotation,
rotation_interval=rotation_interval,
key_usage=key_usage,
origin=origin,
description=description,
dkmsinstance_id=dkmsinstance_id,
protection_level=protection_level,
key_spec=key_spec
)
return client.create_key(request)
@staticmethod
def main(args):
#Make sure that the environment in which the code runs has environment variables ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET set.
#Project code leakage may cause AccessKey to be leaked and threaten the security of all resources under the account. The following code example uses an environment variable to obtain the AccessKey for reference only, it is recommended to use the more secure STS mode, for more authentication access methods, see https://help.aliyun.com/document_detail/378657.html
open_api_config = CreateKey.create_open_api_config(os.getenv('ALIBABA_CLOUD_ACCESS_KEY_ID'), os.getenv('ALIBABA_CLOUD_ACCESS_KEY_SECRET'), 'your region id')
client = CreateKey.create_client(open_api_config)
enable_automatic_rotation = False
rotation_interval = 'your rotationInterval'
key_usage = 'your keyUsage'
origin = 'your origin'
description = 'your description'
d_kmsinstance_id = 'your dKMSInstanceId'
protection_level = 'your protectionLevel'
key_spec = 'your keySpec'
response = CreateKey.create_key(client, enable_automatic_rotation, rotation_interval, key_usage, origin, description, d_kmsinstance_id, protection_level, key_spec)
print response
if __name__ == '__main__':
CreateKey.main(sys.argv[1:])
3. You must not only perform key operations through a VPC gateway, but also manage KMS resources through a public gateway.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Refer to the following sample code to call the KMS CreateKey API and the AdvanceEncrypt API. For more API examples, see `operation samples <./example/operation>`__ 和 `manage samples <./example/manage>`__
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code:: python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import sys
from alibabacloud_tea_openapi import models as open_api_models
from alibabacloud_kms_kms20160120.client import Client as KmsSdkClient
from alibabacloud_kms20160120 import models as kms_20160120_models
from alibabacloud_tea_util.client import Client as UtilClient
from openapi import models as dedicated_kms_openapi_models
from sdk import models as dedicated_kms_sdk_models
import os
class Sample(object):
def __init__(self):
pass
@staticmethod
def create_open_api_config(access_key_id, access_key_secret, region_id):
config = open_api_models.Config(
access_key_id=access_key_id,
access_key_secret=access_key_secret,
region_id=region_id
)
return config
@staticmethod
def create_kms_instance_config(client_key_file, password, endpoint, ca_file_path):
config = dedicated_kms_openapi_models.Config(
client_key_file=client_key_file,
password=password,
endpoint=endpoint,
ca_file_path=ca_file_path
)
return config
@staticmethod
def create_client(kms_instance_config, open_api_config):
return KmsSdkClient(kms_instance_config=kms_instance_config, open_api_config=open_api_config)
@staticmethod
def advance_encrypt(client, key_id, plaintext):
request = dedicated_kms_sdk_models.AdvanceEncryptRequest(
key_id=key_id,
plaintext=plaintext
)
return client.advance_encrypt(request)
@staticmethod
def create_key(client, enable_automatic_rotation, rotation_interval, key_usage, origin, description,
dkmsinstance_id, protection_level, key_spec):
request = kms_20160120_models.CreateKeyRequest(
enable_automatic_rotation=enable_automatic_rotation,
rotation_interval=rotation_interval,
key_usage=key_usage,
origin=origin,
description=description,
dkmsinstance_id=dkmsinstance_id,
protection_level=protection_level,
key_spec=key_spec
)
return client.create_key(request)
@staticmethod
def main(args):
#Make sure that the environment in which the code runs has environment variables ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET set.
#Project code leakage may cause AccessKey to be leaked and threaten the security of all resources under the account. The following code example uses an environment variable to obtain the AccessKey for reference only, it is recommended to use the more secure STS mode, for more authentication access methods, see https://help.aliyun.com/document_detail/378657.html
open_api_config = Sample.create_open_api_config(os.getenv('ALIBABA_CLOUD_ACCESS_KEY_ID'),
os.getenv('ALIBABA_CLOUD_ACCESS_KEY_SECRET'), 'your region id')
kms_instance_config = Sample.create_kms_instance_config(os.getenv('your client key file path env'),
os.getenv('your client key password env'),
'your kms instance endpoint', 'your ca file path')
client = Sample.create_client(kms_instance_config=kms_instance_config, open_api_config=open_api_config)
key_id = 'your keyId'
plaintext = UtilClient.to_bytes('your plaintext')
response = Sample.advance_encrypt(client, key_id, plaintext)
print response
enable_automatic_rotation = False
rotation_interval = 'your rotationInterval'
key_usage = 'your keyUsage'
origin = 'your origin'
description = 'your description'
d_kmsinstance_id = 'your dKMSInstanceId'
protection_level = 'your protectionLevel'
key_spec = 'your keySpec'
response = Sample.create_key(client, enable_automatic_rotation, rotation_interval, key_usage, origin,
description, d_kmsinstance_id, protection_level, key_spec)
print response
if __name__ == '__main__':
Sample.main(sys.argv[1:])
Users who uses Alibaba Cloud SDK to access KMS 1.0 keys need to migrate to access KMS 3.0 keys.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Refer to the following sample code to call the KMS API. For more API examples, see `kms transfer samples <./example/transfer>`__
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code:: python
# -*- coding: utf-8 -*-
import os
from alibabacloud_kms20160120 import models as kms_20160120_models
from alibabacloud_tea_openapi import models as open_api_models
from alibabacloud_kms_kms20160120.models import KmsConfig, KmsRuntimeOptions
from alibabacloud_kms_kms20160120.transfer_client import TransferClient
def create_client():
# set config
openapi_config = open_api_models.Config(
# set region id
region_id='<your-region-id>',
# set access key id
access_key_id=os.getenv('ACCESS_KEY_ID'),
# set access key secret
access_key_secret=os.getenv('ACCESS_KEY_SECRET')
)
# set kms config
kms_config = KmsConfig(
# set the request protocol to https
protocol='https',
# set client key file path
client_key_file='<your-client-key-file-path>',
# set client key password
password='<your-password>',
# set kms instance endpoint
endpoint='<your-kms-instance-endpoint>'
)
# create transfer client
return TransferClient(config=config, kms_config=kms_config)
def create_key(client):
request = kms_20160120_models.CreateKeyRequest(
key_spec='<your-key-spec>',
key_usage='<your-key-usage>'
)
# If verify server CA certificate,you can set CA certificate file path with RuntimeOptions
runtime = KmsRuntimeOptions(
ca='<your-ca-certificate-file-path>'
)
# If you ignore ssl verification,you can set ignore_ssl with True related to the RuntimeOptions parameter
# runtime = KmsRuntimeOptions(
# ignore_ssl=True
# )
try:
response = client.create_key_with_options(request, runtime)
print(str(response.body))
except Exception as e:
print(str(e))
def generate_data_key(client):
request = kms_20160120_models.GenerateDataKeyRequest(
key_id='<your-key-id>',
)
# If verify server CA certificate,you can set CA certificate file path with RuntimeOptions
runtime = KmsRuntimeOptions(
ca='<your-ca-certificate-file-path>'
)
# If you ignore ssl verification,you can set ignore_ssl with True related to the RuntimeOptions parameter
# runtime = KmsRuntimeOptions(
# ignore_ssl=True
# )
try:
response = client.generate_data_key_with_options(request, runtime)
print(str(response.body))
except Exception as e:
print(str(e))
client = create_client()
create_key(client)
generate_data_key(client)
::
## KMS instance performance testing
If you need to use the KMS instance SDK for KMS instance performance testing, please refer to the sample code of the pressure measurement tools in the directory named benchmarks , compile it into an executable program and run it with the following command:
```shell
$ python benchmark.py --case=encrypt --client_key_file=./ClientKey_****.json --client_key_password=**** --endpoint=kst-****.cryptoservice.kms.aliyuncs.com --key_id=key-**** --data_size=32 --concurrence_nums=32 --duration=600
How to compile and use the stress test tool, please refer to `the
document <README-benchmark.rst>`__.
License
-------
`Apache License
2.0 <https://www.apache.org/licenses/LICENSE-2.0.html>`__
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
Raw data
{
"_id": null,
"home_page": "https://github.com/aliyun/alibabacloud-kms-python2-sdk",
"name": "alibabacloud-kms-python2-sdk",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "alibabacloud,kms,python2,sdk",
"author": "Alibaba Cloud SDK",
"author_email": "sdk-team@alibabacloud.com",
"download_url": "https://files.pythonhosted.org/packages/b2/40/3dd7575730fc65c487fde4357b7280a952cb85d480d5b8b2ef5f0587db63/alibabacloud-kms-python2-sdk-1.1.3.tar.gz",
"platform": "any",
"description": "Alibaba Cloud KMS SDK for Python2\n=================================\n\n.. figure:: https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg\n :alt: image0\n\n image0\n\nAlibaba Cloud KMS SDK for Python2 can help Python developers to use the\nKMS.\n\n*Read this in other\nlanguages:*\\ `English <README.rst>`__\\ *,*\\ `\u7b80\u4f53\u4e2d\u6587 <README.zh-cn.rst>`__\n\n- `Alibaba Cloud KMS\n Homepage <https://www.alibabacloud.com/help/zh/doc-detail/311016.htm>`__\n- `Sample Code </example>`__\n- `Issues <https://github.com/aliyun/alibabacloud-kms-kms20160120-python2-sdk/issues>`__\n- `Release <https://github.com/aliyun/alibabacloud-kms-kms20160120-python2-sdk/releases>`__\n\nRequirements\n------------\n\n- Python 2.7.15 or later\n\nInstall\n-------\n\n::\n\n pip install alibabacloud-kms-python2-sdk\n\nIntroduction to KMS Client\n\n+--------------------------+---------------------+---------------------+\n| KMS client classes | Introduction | Usage scenarios |\n+==========================+=====================+=====================+\n| alibabacloud_kms_k | KMS resource | 1. Scenarios where |\n| ms20160120.client.Client | management and key | key operations are |\n| | operations for KMS | performed only |\n| | instance gateways | through VPC |\n| | are supported | gateways. 2. KMS |\n| | | resource management |\n| | | scenarios that only |\n| | | use public |\n| | | gateways. 3. |\n| | | Scenarios where you |\n| | | want to perform key |\n| | | operations through |\n| | | VPC gateways and |\n| | | manage KMS |\n| | | resources through |\n| | | public gateways. |\n+--------------------------+---------------------+---------------------+\n| al | Users can migrate | Users who use |\n| ibabacloud_kms_kms201601 | from KMS 1.0 key | Alibaba Cloud SDK |\n| 20.client.TransferClient | operations to KMS | to access KMS 1.0 |\n| | 3.0 key operations | key operations need |\n| | | to migrate to KMS |\n| | | 3.0 |\n+--------------------------+---------------------+---------------------+\n\nSample code\n-----------\n\n1. Scenarios where key operations are performed only through VPC gateways.\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRefer to the following sample code to call the KMS AdvanceEncrypt API. For more API examples, see\\ `operation samples <./example/operation>`__\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n # -*- coding: utf-8 -*-\n # This file is auto-generated, don't edit it. Thanks.\n from __future__ import unicode_literals\n\n import sys\n\n\n from openapi import models as dedicated_kms_openapi_models\n from alibabacloud_kms_kms20160120.client import Client as KmsSdkClient\n from sdk import models as dedicated_kms_sdk_models\n from alibabacloud_tea_util.client import Client as UtilClient\n\n import os\n\n class AdvanceEncrypt(object):\n def __init__(self):\n pass\n\n @staticmethod\n def create_kms_instance_config(client_key_file, password, endpoint, ca_file_path):\n config = dedicated_kms_openapi_models.Config(\n client_key_file=client_key_file,\n password=password,\n endpoint=endpoint,\n ca_file_path=ca_file_path\n )\n return config\n\n @staticmethod\n def create_client(kms_instance_config):\n return KmsSdkClient(kms_instance_config=kms_instance_config)\n\n @staticmethod\n def advance_encrypt(client, key_id, plaintext):\n request = dedicated_kms_sdk_models.AdvanceEncryptRequest(\n key_id=key_id,\n plaintext=plaintext\n )\n return client.advance_encrypt(request)\n\n @staticmethod\n def main(args):\n kms_instance_config = AdvanceEncrypt.create_kms_instance_config(os.getenv('your client key file path env'), os.getenv('your client key password env'), 'your kms instance endpoint', 'your ca file path')\n client = AdvanceEncrypt.create_client(kms_instance_config)\n key_id = 'your keyId'\n plaintext = UtilClient.to_bytes('your plaintext')\n response = AdvanceEncrypt.advance_encrypt(client, key_id, plaintext)\n print response\n\n\n if __name__ == '__main__':\n AdvanceEncrypt.main(sys.argv[1:])\n\n2. KMS resources are managed only through public gateways.\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRefer to the following sample code to call the KMS CreateKey API. For more API examples, see\\ `manage samples <./example/manage>`__\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n # -*- coding: utf-8 -*-\n # This file is auto-generated, don't edit it. Thanks.\n from __future__ import unicode_literals\n\n import sys\n\n\n from alibabacloud_tea_openapi import models as open_api_models\n from alibabacloud_kms_kms20160120.client import Client as KmsSdkClient\n from alibabacloud_kms20160120 import models as kms_20160120_models\n\n import os\n\n class CreateKey(object):\n def __init__(self):\n pass\n\n @staticmethod\n def create_open_api_config(access_key_id, access_key_secret, region_id):\n config = open_api_models.Config(\n access_key_id=access_key_id,\n access_key_secret=access_key_secret,\n region_id=region_id\n )\n return config\n\n @staticmethod\n def create_client(open_api_config):\n return KmsSdkClient(open_api_config=open_api_config)\n\n @staticmethod\n def create_key(client, enable_automatic_rotation, rotation_interval, key_usage, origin, description, dkmsinstance_id, protection_level, key_spec):\n request = kms_20160120_models.CreateKeyRequest(\n enable_automatic_rotation=enable_automatic_rotation,\n rotation_interval=rotation_interval,\n key_usage=key_usage,\n origin=origin,\n description=description,\n dkmsinstance_id=dkmsinstance_id,\n protection_level=protection_level,\n key_spec=key_spec\n )\n return client.create_key(request)\n\n @staticmethod\n def main(args):\n #Make sure that the environment in which the code runs has environment variables ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET set.\n #Project code leakage may cause AccessKey to be leaked and threaten the security of all resources under the account. The following code example uses an environment variable to obtain the AccessKey for reference only, it is recommended to use the more secure STS mode, for more authentication access methods, see https://help.aliyun.com/document_detail/378657.html\n open_api_config = CreateKey.create_open_api_config(os.getenv('ALIBABA_CLOUD_ACCESS_KEY_ID'), os.getenv('ALIBABA_CLOUD_ACCESS_KEY_SECRET'), 'your region id')\n client = CreateKey.create_client(open_api_config)\n enable_automatic_rotation = False\n rotation_interval = 'your rotationInterval'\n key_usage = 'your keyUsage'\n origin = 'your origin'\n description = 'your description'\n d_kmsinstance_id = 'your dKMSInstanceId'\n protection_level = 'your protectionLevel'\n key_spec = 'your keySpec'\n response = CreateKey.create_key(client, enable_automatic_rotation, rotation_interval, key_usage, origin, description, d_kmsinstance_id, protection_level, key_spec)\n print response\n\n\n if __name__ == '__main__':\n CreateKey.main(sys.argv[1:])\n\n3. You must not only perform key operations through a VPC gateway, but also manage KMS resources through a public gateway.\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRefer to the following sample code to call the KMS CreateKey API and the AdvanceEncrypt API. For more API examples, see `operation samples <./example/operation>`__ \u548c `manage samples <./example/manage>`__\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n # -*- coding: utf-8 -*-\n from __future__ import unicode_literals\n\n import sys\n\n from alibabacloud_tea_openapi import models as open_api_models\n from alibabacloud_kms_kms20160120.client import Client as KmsSdkClient\n from alibabacloud_kms20160120 import models as kms_20160120_models\n from alibabacloud_tea_util.client import Client as UtilClient\n from openapi import models as dedicated_kms_openapi_models\n from sdk import models as dedicated_kms_sdk_models\n import os\n\n\n class Sample(object):\n def __init__(self):\n pass\n\n @staticmethod\n def create_open_api_config(access_key_id, access_key_secret, region_id):\n config = open_api_models.Config(\n access_key_id=access_key_id,\n access_key_secret=access_key_secret,\n region_id=region_id\n )\n return config\n\n @staticmethod\n def create_kms_instance_config(client_key_file, password, endpoint, ca_file_path):\n config = dedicated_kms_openapi_models.Config(\n client_key_file=client_key_file,\n password=password,\n endpoint=endpoint,\n ca_file_path=ca_file_path\n )\n return config\n\n @staticmethod\n def create_client(kms_instance_config, open_api_config):\n return KmsSdkClient(kms_instance_config=kms_instance_config, open_api_config=open_api_config)\n\n @staticmethod\n def advance_encrypt(client, key_id, plaintext):\n request = dedicated_kms_sdk_models.AdvanceEncryptRequest(\n key_id=key_id,\n plaintext=plaintext\n )\n return client.advance_encrypt(request)\n\n @staticmethod\n def create_key(client, enable_automatic_rotation, rotation_interval, key_usage, origin, description,\n dkmsinstance_id, protection_level, key_spec):\n request = kms_20160120_models.CreateKeyRequest(\n enable_automatic_rotation=enable_automatic_rotation,\n rotation_interval=rotation_interval,\n key_usage=key_usage,\n origin=origin,\n description=description,\n dkmsinstance_id=dkmsinstance_id,\n protection_level=protection_level,\n key_spec=key_spec\n )\n return client.create_key(request)\n\n @staticmethod\n def main(args):\n #Make sure that the environment in which the code runs has environment variables ALIBABA_CLOUD_ACCESS_KEY_ID and ALIBABA_CLOUD_ACCESS_KEY_SECRET set.\n #Project code leakage may cause AccessKey to be leaked and threaten the security of all resources under the account. The following code example uses an environment variable to obtain the AccessKey for reference only, it is recommended to use the more secure STS mode, for more authentication access methods, see https://help.aliyun.com/document_detail/378657.html\n open_api_config = Sample.create_open_api_config(os.getenv('ALIBABA_CLOUD_ACCESS_KEY_ID'),\n os.getenv('ALIBABA_CLOUD_ACCESS_KEY_SECRET'), 'your region id')\n kms_instance_config = Sample.create_kms_instance_config(os.getenv('your client key file path env'),\n os.getenv('your client key password env'),\n 'your kms instance endpoint', 'your ca file path')\n client = Sample.create_client(kms_instance_config=kms_instance_config, open_api_config=open_api_config)\n\n key_id = 'your keyId'\n plaintext = UtilClient.to_bytes('your plaintext')\n response = Sample.advance_encrypt(client, key_id, plaintext)\n print response\n\n enable_automatic_rotation = False\n rotation_interval = 'your rotationInterval'\n key_usage = 'your keyUsage'\n origin = 'your origin'\n description = 'your description'\n d_kmsinstance_id = 'your dKMSInstanceId'\n protection_level = 'your protectionLevel'\n key_spec = 'your keySpec'\n response = Sample.create_key(client, enable_automatic_rotation, rotation_interval, key_usage, origin,\n description, d_kmsinstance_id, protection_level, key_spec)\n print response\n\n\n if __name__ == '__main__':\n Sample.main(sys.argv[1:])\n\nUsers who uses Alibaba Cloud SDK to access KMS 1.0 keys need to migrate to access KMS 3.0 keys.\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRefer to the following sample code to call the KMS API. For more API examples, see `kms transfer samples <./example/transfer>`__\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n # -*- coding: utf-8 -*-\n import os\n from alibabacloud_kms20160120 import models as kms_20160120_models\n from alibabacloud_tea_openapi import models as open_api_models\n from alibabacloud_kms_kms20160120.models import KmsConfig, KmsRuntimeOptions\n from alibabacloud_kms_kms20160120.transfer_client import TransferClient\n\n\n def create_client():\n # set config\n openapi_config = open_api_models.Config(\n # set region id\n region_id='<your-region-id>',\n # set access key id\n access_key_id=os.getenv('ACCESS_KEY_ID'),\n # set access key secret\n access_key_secret=os.getenv('ACCESS_KEY_SECRET')\n )\n # set kms config\n kms_config = KmsConfig(\n # set the request protocol to https\n protocol='https',\n # set client key file path\n client_key_file='<your-client-key-file-path>',\n # set client key password\n password='<your-password>',\n # set kms instance endpoint\n endpoint='<your-kms-instance-endpoint>'\n )\n # create transfer client\n return TransferClient(config=config, kms_config=kms_config)\n\n\n def create_key(client):\n request = kms_20160120_models.CreateKeyRequest(\n key_spec='<your-key-spec>',\n key_usage='<your-key-usage>'\n )\n\n # If verify server CA certificate,you can set CA certificate file path with RuntimeOptions\n runtime = KmsRuntimeOptions(\n ca='<your-ca-certificate-file-path>'\n )\n # If you ignore ssl verification\uff0cyou can set ignore_ssl with True related to the RuntimeOptions parameter\n # runtime = KmsRuntimeOptions(\n # ignore_ssl=True\n # )\n\n try:\n response = client.create_key_with_options(request, runtime)\n print(str(response.body))\n except Exception as e:\n print(str(e))\n\n\n def generate_data_key(client):\n request = kms_20160120_models.GenerateDataKeyRequest(\n key_id='<your-key-id>',\n )\n\n # If verify server CA certificate,you can set CA certificate file path with RuntimeOptions\n runtime = KmsRuntimeOptions(\n ca='<your-ca-certificate-file-path>'\n )\n # If you ignore ssl verification\uff0cyou can set ignore_ssl with True related to the RuntimeOptions parameter\n # runtime = KmsRuntimeOptions(\n # ignore_ssl=True\n # )\n\n try:\n response = client.generate_data_key_with_options(request, runtime)\n print(str(response.body))\n except Exception as e:\n print(str(e))\n\n\n client = create_client()\n create_key(client)\n generate_data_key(client)\n\n::\n\n\n ## KMS instance performance testing\n\n If you need to use the KMS instance SDK for KMS instance performance testing, please refer to the sample code of the pressure measurement tools in the directory named benchmarks , compile it into an executable program and run it with the following command:\n\n ```shell\n $ python benchmark.py --case=encrypt --client_key_file=./ClientKey_****.json --client_key_password=**** --endpoint=kst-****.cryptoservice.kms.aliyuncs.com --key_id=key-**** --data_size=32 --concurrence_nums=32 --duration=600\n\nHow to compile and use the stress test tool, please refer to `the\ndocument <README-benchmark.rst>`__.\n\nLicense\n-------\n\n`Apache License\n2.0 <https://www.apache.org/licenses/LICENSE-2.0.html>`__\n\nCopyright (c) 2009-present, Alibaba Cloud All rights reserved.",
"bugtrack_url": null,
"license": "Apache License 2.0",
"summary": "Alibaba Cloud KMS Python2 SDK",
"version": "1.1.3",
"project_urls": {
"Homepage": "https://github.com/aliyun/alibabacloud-kms-python2-sdk"
},
"split_keywords": [
"alibabacloud",
"kms",
"python2",
"sdk"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "b2403dd7575730fc65c487fde4357b7280a952cb85d480d5b8b2ef5f0587db63",
"md5": "3222b773648957b94f33b09436c0f8d3",
"sha256": "bdc88cbf3cc5315496155859d6f9d1e55bfedcab26c6857860a09b7984237e67"
},
"downloads": -1,
"filename": "alibabacloud-kms-python2-sdk-1.1.3.tar.gz",
"has_sig": false,
"md5_digest": "3222b773648957b94f33b09436c0f8d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19292,
"upload_time": "2024-01-26T11:45:15",
"upload_time_iso_8601": "2024-01-26T11:45:15.970837Z",
"url": "https://files.pythonhosted.org/packages/b2/40/3dd7575730fc65c487fde4357b7280a952cb85d480d5b8b2ef5f0587db63/alibabacloud-kms-python2-sdk-1.1.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-01-26 11:45:15",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "aliyun",
"github_project": "alibabacloud-kms-python2-sdk",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "alibabacloud-kms-python2-sdk"
}