ofuda
HMAC authentication module for NodeJS.
Getting Started
Install the module with: npm install ofuda
Ofuda = ; var ofuda = headerPrefix:'Amz' hash: 'sha1' serviceLabel: 'AWS' accessKeyId: '44CF9590006BF252F707' accessKeySecret: 'OtxrzxIsfpFjA7SwPzILwy8Bw21TLhquhboDYROV'; ofuda; // appends a hmac authorisation header to the request
Documentation
(Coming soon)
Examples
Use as a client is illustrated below.
var http = ;var Ofuda = ; var ofuda = headerPrefix:'Amz' hash: 'sha1' serviceLabel: 'AWS' debug: true; var credentials = accessKeyId: '44CF9590006BF252F707' accessKeySecret: 'OtxrzxIsfpFjA7SwPzILwy8Bw21TLhquhboDYROV'; http_options = host: 'localhost' port: 8080 path: '/notify' method: 'PUT' headers: 'Content-Type': 'application/json' 'Content-MD5': 'ee930827ccb58cd846ca31af5faa3634' ; signedOptions = ofuda; var req = http; req;req;
Use as a server is as follows.
var http = Ofuda = ; var ofuda = headerPrefix:'Amz' hash: 'sha1' serviceLabel: 'AWS' debug: true; var { return accessKeyId: requestAccessKeyId accessKeySecret: 'OtxrzxIsfpFjA7SwPzILwy8Bw21TLhquhboDYROV';} http; console;
Contributing
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
Release History
(Nothing yet)
License
Copyright (c) 2012 Mark Wolfe
Licensed under the MIT license.