Discuss this help topic in SecureBlackbox Forum
Defines possible methods used by the Dropbox data storage components to sign requests.
OAuth 1.0 specification defines only HMAC-SHA1 signatures; OAuth 2.0 fully relies on secure channel, and doesn't support signatures.
Declaration
[C#/Java]
enum TSBDropboxSignatureMethod {dsmHMACSHA1 = 0};
[VB.NET]
Enum TSBDropboxSignatureMethod
dsmHMACSHA1 = 0
End Enum
[Pascal]
TSBDropboxSignatureMethod = (dsmHMACSHA1);
[C++]
typedef uint8_t TSBDropboxSignatureMethodRaw;
typedef enum { dsmHMACSHA1 = 0 } TSBDropboxSignatureMethod;
Description
Possible values:
Declared in
.NET:
- Namespace: SBDropboxDataStorage
- Assembly: SecureBlackbox.Cloud
VCL:
- Unit: SBDropboxDataStorage
Java:
- Package: SecureBlackbox.Cloud.jar
C++:
Discuss this help topic in SecureBlackbox Forum