Discuss this help topic in SecureBlackbox Forum

TElSymmetricKeyMaterial.IV

TElSymmetricKeyMaterial     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property contains the initial vector

Declaration

[C#]
    byte[] IV;

[VB.NET]
    Property IV As Byte()

[Pascal]
    property IV : ByteArray;

[C++]
    void get_IV(std::vector<uint8_t> &OutResult);
    void set_IV(const std::vector<uint8_t> &Value);

[PHP]
    string get_IV()
    void set_IV(array of byte|string|NULL $Value)

[Java]
    byte[] getIV();
    void setIV(byte[] Value);

Description

    Use this property to specify the initial vector. The initial vector is used in some encryption modes.

See also:     Key     Load     Save    

Discuss this help topic in SecureBlackbox Forum