Discuss this help topic in SecureBlackbox Forum

TElOpenOfficeXMLManifestAlgorithm.IV

TElOpenOfficeXMLManifestAlgorithm     See also     


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


Contains the Initialization Vector to the stream cipher.

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

    The Initialization Vector (IV) attribute specifies the 8 bytes used to initialize the stream cipher used for data encoding. Value written to the Manifest file should be Base64 encoded binary sequence.

See also:     AlgorithmName    

Discuss this help topic in SecureBlackbox Forum