Files
aliyun-openapi-cpp-sdk/kms/include/alibabacloud/kms/model/AdvanceEncryptRequest.h
2024-08-30 09:01:07 +00:00

58 lines
1.8 KiB
C++

/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ALIBABACLOUD_KMS_MODEL_ADVANCEENCRYPTREQUEST_H_
#define ALIBABACLOUD_KMS_MODEL_ADVANCEENCRYPTREQUEST_H_
#include <alibabacloud/kms/KmsExport.h>
#include <alibabacloud/core/RpcServiceRequest.h>
#include <string>
#include <vector>
#include <map>
namespace AlibabaCloud {
namespace Kms {
namespace Model {
class ALIBABACLOUD_KMS_EXPORT AdvanceEncryptRequest : public RpcServiceRequest {
public:
AdvanceEncryptRequest();
~AdvanceEncryptRequest();
std::string getPaddingMode() const;
void setPaddingMode(const std::string &paddingMode);
std::string getAad() const;
void setAad(const std::string &aad);
std::string getKeyId() const;
void setKeyId(const std::string &keyId);
std::string getPlaintext() const;
void setPlaintext(const std::string &plaintext);
std::string getIv() const;
void setIv(const std::string &iv);
std::string getAlgorithm() const;
void setAlgorithm(const std::string &algorithm);
private:
std::string paddingMode_;
std::string aad_;
std::string keyId_;
std::string plaintext_;
std::string iv_;
std::string algorithm_;
};
} // namespace Model
} // namespace Kms
} // namespace AlibabaCloud
#endif // !ALIBABACLOUD_KMS_MODEL_ADVANCEENCRYPTREQUEST_H_