vendoo_v1.0/Vendoo/QuerySigner.swift
2016-08-28 16:25:31 -04:00

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{
}