Socket
Socket
Sign inDemoInstall

aws-sigv4

Package Overview
Dependencies
0
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aws-sigv4

AWS Signature Version 4


Version published
Maintainers
1
Install size
224 kB
Created

Readme

Source

aws-sigv4

A dependency-free, test suite-compliant, AWS Signature Version 4 library in ES2017

NPM npm version ESDoc Dependency Status devDependency Status Coverage Status Code Climate Test Coverage Issue Count Codacy Badge Known Vulnerabilities Greenkeeper badge

  • Master: Build Status
  • Develop: Build Status

Example - ES2017 (Node 7.6+)

const sigv4 = require('aws-sigv4');

const signature = await sigv4.sign(
	secretAccessKey,
	requestDate.slice(0, 8),
	'us-east-1',
	'host',
	stringToSign
);

console.log(signature);

Example - ES2016 (Node 4, 6, <= 7.5)

const sigv4 = require('aws-sigv4');

sigv4.sign(
	secretAccessKey,
	requestDate.slice(0, 8),
	'us-east-1',
	'host',
	stringToSign
)
	.then(signature => console.log(signature));

// Or, more specifically for S3:

const date = sigv4
	.formatDateTime(new Date())
	.slice(0, 8);
const credential = `${process.env.AWS_ACCESS_KEY_ID}/${date}/${process.env.AWS_REGION}/s3/aws4_request`;
const policy = new Buffer(
	JSON.stringify({
		expiration: new Date(Date.now() + 15 * 60000).toISOString(), // 15 minutes from now
		conditions: [
			{bucket: 'my-bucket-name'},
			{key: 'my-s3-key.mov'},
			{acl: 'private'},
			['starts-with', '$Content-Type', 'video/'],
			['content-length-range', 0, 10 * 1024 * 1024],
			{'x-amz-credential': credential},
			{'x-amz-algorithm': 'AWS4-HMAC-SHA256'},
			{'x-amz-date': date + 'T000000Z'}
		]
	})
)
	.toString('base64');

sigv4.sign(
	process.env.AWS_SECRET_ACCESS_KEY,
	date,
	process.env.AWS_REGION,
	's3',
	policy
)
	.then(signature => console.log(sigature));

See Authenticating Requests in Browser-Based Uploads Using POST (AWS Signature Version 4) as the primary use case.

Keywords

FAQs

Last updated on 21 May 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc