libqtaws  0.1.0
UnofficialAWSlibraryforQt
Public Member Functions | List of all members
AwsSignatureV0 Class Reference

Implements AWS Signature Version 0 (deprecated by Amazon). More...

Inheritance diagram for AwsSignatureV0:
Inheritance graph
[legend]
Collaboration diagram for AwsSignatureV0:
Collaboration graph
[legend]

Public Member Functions

 AwsSignatureV0 ()
 Constructs a new AwsSignatureV0 object. More...
 
virtual void sign (const AwsAbstractCredentials &credentials, const QNetworkAccessManager::Operation operation, QNetworkRequest &request, const QByteArray &data=QByteArray()) const
 Sign an AWS request. More...
 
virtual int version () const
 AWS Signature version implemented by this class. More...
 
- Public Member Functions inherited from AwsAbstractSignature
virtual ~AwsAbstractSignature ()
 AwsAbstractSignature destructor.
 

Detailed Description

Implements AWS Signature Version 0 (deprecated by Amazon).

Deprecated:
Amazon has officially deprecated signature Version 0 in favor of later, more secure signatures, such as AwsSignatureV2 and AwsSignatureV4.

As version 0 signatures are rightly regarded as insecure, this class will refuse to sign requests that use insecure transports such as HTTP instead of HTTPS. However, insecure signatures can be enabled (why would you want to?) by defining QTAWS_ALLOW_INSECURE_SIGNATURES when compiling this library.

See also
http://s3.amazonaws.com/awsdocs/SQS/20070501/sqs-dg-20070501.pdf

Constructor & Destructor Documentation

AwsSignatureV0::AwsSignatureV0 ( )

Constructs a new AwsSignatureV0 object.

Use instances of this object to provide Version 0 signatures for AWS services.

Member Function Documentation

void AwsSignatureV0::sign ( const AwsAbstractCredentials credentials,
const QNetworkAccessManager::Operation  operation,
QNetworkRequest &  request,
const QByteArray &  data = QByteArray() 
) const
virtual

Sign an AWS request.

Note, credentials must be valid before calling this function. So, for example, if credentials has expired, and is refreshable, it is the caller's responsibility to refresh the credentials before calling this function.

Parameters
operationThe network operation to sign request for.
requestThe network request to be signed.
credentialsThe credentials to use for signing.
dataOptional POST / PUT data to sign request for.

Implements AwsAbstractSignature.

int AwsSignatureV0::version ( ) const
virtual

AWS Signature version implemented by this class.

Derived classes must implement this function to report the version of the AWS Signature implemented by the class.

Returns
The AWS Signature version implemented by this class.

Implements AwsAbstractSignature.

Reimplemented in AwsSignatureV1.


The documentation for this class was generated from the following files: