mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 11:47:40 +00:00
20 lines
426 B
Swift
20 lines
426 B
Swift
//
|
|
// QuerySigner.swift
|
|
// Vendoo
|
|
//
|
|
// Created by cole alban on 8/27/16.
|
|
// Copyright © 2016 Okechi Onyeje. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/*
|
|
This class will be used to sign the HTTP query with a HmacSHA256
|
|
string that will then be encoded in base64 for transmission.
|
|
This 'signature' is required by the Amazon MWS Api to verify
|
|
that requests are not corrupted in transit.
|
|
*/
|
|
class QuerySigner{
|
|
|
|
}
|