Discuss this help topic in SecureBlackbox Forum
This topic is under development…
Declaration
[C#/Java]
struct TSBPGPEncryptedSymmetricKey
{
byte[] Value0;
byte[] Value1;
}
[VB.NET]
Structure TSBPGPEncryptedSymmetricKey
Value0 As Byte()
Value1 As Byte()
End Structure
[Pascal]
TSBPGPEncryptedSymmetricKey = record
Value0 : ByteArray;
Value1 : ByteArray;
end;
[C++]
typedef struct
{
void * Value0;
void * Value1;
} TSBPGPEncryptedSymmetricKey;
Parameters
Description
…
Declared in
.NET:
- Namespace: SBPGPUtils
- Assembly: SecureBlackbox.PGP
VCL:Java:
- Package: SecureBlackbox.PGP.jar
C++:
Discuss this help topic in SecureBlackbox Forum