SecureBlackbox Lite 2020 C++ Edition

Questions / Feedback?

KeyIV Property

The initialization vector (IV) of a symmetric key.

Syntax

ANSI (Cross Platform)
int GetKeyIV(char* &lpKeyIV, int &lenKeyIV);
int SetKeyIV(const char* lpKeyIV, int lenKeyIV); Unicode (Windows) INT GetKeyIV(LPSTR &lpKeyIV, INT &lenKeyIV);
INT SetKeyIV(LPCSTR lpKeyIV, INT lenKeyIV);
@property (nonatomic,readwrite,assign,getter=keyIV,setter=setKeyIV:) NSData* keyIV;
- (NSData*)keyIV;
- (void)setKeyIV:(NSData*)newKeyIV;
#define PID_HASHFUNCTION_KEYIV 11

SECUREBLACKBOXLITE_EXTERNAL void* SECUREBLACKBOXLITE_CALL SecureBlackboxLite_HashFunction_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
SECUREBLACKBOXLITE_EXTERNAL int SECUREBLACKBOXLITE_CALL SecureBlackboxLite_HashFunction_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 Lite 2020 C++ Edition - Version 20.0 [Build 8166]