This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 27486 - RsaHashedImportParams does not extend Algorithm
Summary: RsaHashedImportParams does not extend Algorithm
Status: RESOLVED MOVED
Alias: None
Product: Web Cryptography
Classification: Unclassified
Component: Web Cryptography API Document (show other bugs)
Version: unspecified
Hardware: PC Linux
: P2 normal
Target Milestone: ---
Assignee: Ryan Sleevi
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-02 20:10 UTC by Eric Roman
Modified: 2016-05-23 23:50 UTC (History)
2 users (show)

See Also:


Attachments

Description Eric Roman 2014-12-02 20:10:54 UTC
Currently written as:

dictionary RsaHashedImportParams {
  // The hash algorithm to use
  required HashAlgorithmIdentifier hash;
};


However to matched the other parameters it should be written as:

dictionary RsaHashedImportParams : Algorithm {
  // The hash algorithm to use
  required HashAlgorithmIdentifier hash;
};
Comment 1 Mark Watson 2016-05-23 23:50:23 UTC
Moved to: https://github.com/w3c/webcrypto/issues/44