SharpTox.Encryption.ToxEncryptionFunctions.IsDataEncrypted C# (CSharp) Method

IsDataEncrypted() private method

private IsDataEncrypted ( byte data ) : bool
data byte
return bool
        internal static extern bool IsDataEncrypted(byte[] data);

Usage Example

Example #1
0
 public static bool IsDataEncrypted(byte[] data)
 {
     return(ToxEncryptionFunctions.IsDataEncrypted(data));
 }
All Usage Examples Of SharpTox.Encryption.ToxEncryptionFunctions::IsDataEncrypted