SecureBlackbox 2020 C++ Edition

Questions / Feedback?

CryptoKeyIV Property

The initialization vector (IV) of a symmetric key.

Syntax

ANSI (Cross Platform)
int GetCryptoKeyIV(char* &lpCryptoKeyIV, int &lenCryptoKeyIV);
int SetCryptoKeyIV(const char* lpCryptoKeyIV, int lenCryptoKeyIV); Unicode (Windows) INT GetCryptoKeyIV(LPSTR &lpCryptoKeyIV, INT &lenCryptoKeyIV);
INT SetCryptoKeyIV(LPCSTR lpCryptoKeyIV, INT lenCryptoKeyIV);
@property (nonatomic,readwrite,assign,getter=cryptoKeyIV,setter=setCryptoKeyIV:) NSData* cryptoKeyIV;
- (NSData*)cryptoKeyIV;
- (void)setCryptoKeyIV:(NSData*)newCryptoKeyIV;
#define PID_SSHKEYMANAGER_CRYPTOKEYIV 37

SECUREBLACKBOX_EXTERNAL void* SECUREBLACKBOX_CALL SecureBlackbox_SSHKeyManager_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
SECUREBLACKBOX_EXTERNAL int SECUREBLACKBOX_CALL SecureBlackbox_SSHKeyManager_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Remarks

The initialization vector (IV) of a symmetric key. This is normally a public part of a symmetric key, the idea of which is to introduce randomness to the encrypted dataand/or serve as a first block in chaining ciphers.

This property is not available at design time.

Data Type

Byte Array

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 C++ Edition - Version 20.0 [Build 8166]