Skip to content

Latest commit

 

History

History
254 lines (137 loc) · 6.77 KB

DecryptPKCS1.md

File metadata and controls

254 lines (137 loc) · 6.77 KB

DecryptPKCS1

Properties

Name Type Description Notes
Ciphertext string Ciphertext to be decrypted in base64 encoded format
DisplayId Pointer to string The display id of the key to use in the decryption process [optional]
ItemId Pointer to int64 The item id of the key to use in the decryption process [optional]
Json Pointer to bool Set output format to JSON [optional] [default to false]
KeyName string The name of the key to use in the decryption process
OutputFormat Pointer to string If specified, the output will be formatted accordingly. options: [base64] [optional]
Token Pointer to string Authentication token (see `/auth` and `/configure`) [optional]
UidToken Pointer to string The universal identity token, Required only for universal_identity authentication [optional]
Version Pointer to int32 key version (relevant only for classic key) [optional]

Methods

NewDecryptPKCS1

func NewDecryptPKCS1(ciphertext string, keyName string, ) *DecryptPKCS1

NewDecryptPKCS1 instantiates a new DecryptPKCS1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewDecryptPKCS1WithDefaults

func NewDecryptPKCS1WithDefaults() *DecryptPKCS1

NewDecryptPKCS1WithDefaults instantiates a new DecryptPKCS1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetCiphertext

func (o *DecryptPKCS1) GetCiphertext() string

GetCiphertext returns the Ciphertext field if non-nil, zero value otherwise.

GetCiphertextOk

func (o *DecryptPKCS1) GetCiphertextOk() (*string, bool)

GetCiphertextOk returns a tuple with the Ciphertext field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetCiphertext

func (o *DecryptPKCS1) SetCiphertext(v string)

SetCiphertext sets Ciphertext field to given value.

GetDisplayId

func (o *DecryptPKCS1) GetDisplayId() string

GetDisplayId returns the DisplayId field if non-nil, zero value otherwise.

GetDisplayIdOk

func (o *DecryptPKCS1) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDisplayId

func (o *DecryptPKCS1) SetDisplayId(v string)

SetDisplayId sets DisplayId field to given value.

HasDisplayId

func (o *DecryptPKCS1) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

GetItemId

func (o *DecryptPKCS1) GetItemId() int64

GetItemId returns the ItemId field if non-nil, zero value otherwise.

GetItemIdOk

func (o *DecryptPKCS1) GetItemIdOk() (*int64, bool)

GetItemIdOk returns a tuple with the ItemId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetItemId

func (o *DecryptPKCS1) SetItemId(v int64)

SetItemId sets ItemId field to given value.

HasItemId

func (o *DecryptPKCS1) HasItemId() bool

HasItemId returns a boolean if a field has been set.

GetJson

func (o *DecryptPKCS1) GetJson() bool

GetJson returns the Json field if non-nil, zero value otherwise.

GetJsonOk

func (o *DecryptPKCS1) GetJsonOk() (*bool, bool)

GetJsonOk returns a tuple with the Json field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetJson

func (o *DecryptPKCS1) SetJson(v bool)

SetJson sets Json field to given value.

HasJson

func (o *DecryptPKCS1) HasJson() bool

HasJson returns a boolean if a field has been set.

GetKeyName

func (o *DecryptPKCS1) GetKeyName() string

GetKeyName returns the KeyName field if non-nil, zero value otherwise.

GetKeyNameOk

func (o *DecryptPKCS1) GetKeyNameOk() (*string, bool)

GetKeyNameOk returns a tuple with the KeyName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetKeyName

func (o *DecryptPKCS1) SetKeyName(v string)

SetKeyName sets KeyName field to given value.

GetOutputFormat

func (o *DecryptPKCS1) GetOutputFormat() string

GetOutputFormat returns the OutputFormat field if non-nil, zero value otherwise.

GetOutputFormatOk

func (o *DecryptPKCS1) GetOutputFormatOk() (*string, bool)

GetOutputFormatOk returns a tuple with the OutputFormat field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetOutputFormat

func (o *DecryptPKCS1) SetOutputFormat(v string)

SetOutputFormat sets OutputFormat field to given value.

HasOutputFormat

func (o *DecryptPKCS1) HasOutputFormat() bool

HasOutputFormat returns a boolean if a field has been set.

GetToken

func (o *DecryptPKCS1) GetToken() string

GetToken returns the Token field if non-nil, zero value otherwise.

GetTokenOk

func (o *DecryptPKCS1) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetToken

func (o *DecryptPKCS1) SetToken(v string)

SetToken sets Token field to given value.

HasToken

func (o *DecryptPKCS1) HasToken() bool

HasToken returns a boolean if a field has been set.

GetUidToken

func (o *DecryptPKCS1) GetUidToken() string

GetUidToken returns the UidToken field if non-nil, zero value otherwise.

GetUidTokenOk

func (o *DecryptPKCS1) GetUidTokenOk() (*string, bool)

GetUidTokenOk returns a tuple with the UidToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetUidToken

func (o *DecryptPKCS1) SetUidToken(v string)

SetUidToken sets UidToken field to given value.

HasUidToken

func (o *DecryptPKCS1) HasUidToken() bool

HasUidToken returns a boolean if a field has been set.

GetVersion

func (o *DecryptPKCS1) GetVersion() int32

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *DecryptPKCS1) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetVersion

func (o *DecryptPKCS1) SetVersion(v int32)

SetVersion sets Version field to given value.

HasVersion

func (o *DecryptPKCS1) HasVersion() bool

HasVersion returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]