Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: Source/modules/crypto/SubtleCrypto.idl

Issue 109223002: [webcrypto] Add crypto.subtle.wrapKey() and crypto.subtle.unwrapKey() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase test expectations (to match latest changes I had made) Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.cpp ('k') | public/platform/WebCrypto.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 ] interface SubtleCrypto { 33 ] interface SubtleCrypto {
34 [RaisesException] Promise encrypt(Dictionary algorithm, Key key, ArrayBuffer View data); 34 [RaisesException] Promise encrypt(Dictionary algorithm, Key key, ArrayBuffer View data);
35 [RaisesException] Promise decrypt(Dictionary algorithm, Key key, ArrayBuffer View data); 35 [RaisesException] Promise decrypt(Dictionary algorithm, Key key, ArrayBuffer View data);
36 [RaisesException] Promise sign(Dictionary algorithm, Key key, ArrayBufferVie w data); 36 [RaisesException] Promise sign(Dictionary algorithm, Key key, ArrayBufferVie w data);
37 [RaisesException, ImplementedAs=verifySignature] Promise verify(Dictionary a lgorithm, Key key, ArrayBufferView signature, ArrayBufferView data); 37 [RaisesException, ImplementedAs=verifySignature] Promise verify(Dictionary a lgorithm, Key key, ArrayBufferView signature, ArrayBufferView data);
38 [RaisesException] Promise digest(Dictionary algorithm, ArrayBufferView data) ; 38 [RaisesException] Promise digest(Dictionary algorithm, ArrayBufferView data) ;
39 39
40 [RaisesException] Promise generateKey(Dictionary algorithm, boolean extracta ble, DOMString[] keyUsages); 40 [RaisesException] Promise generateKey(Dictionary algorithm, boolean extracta ble, DOMString[] keyUsages);
41 [RaisesException] Promise importKey(DOMString format, ArrayBufferView keyDat a, Dictionary? algorithm, boolean extractable, DOMString[] keyUsages); 41 [RaisesException] Promise importKey(DOMString format, ArrayBufferView keyDat a, Dictionary? algorithm, boolean extractable, DOMString[] keyUsages);
42 [RaisesException] Promise exportKey(DOMString format, Key key); 42 [RaisesException] Promise exportKey(DOMString format, Key key);
43
44 [RaisesException] Promise wrapKey(DOMString format, Key key, Key wrappingKey , Dictionary wrapAlgorithm);
45 [RaisesException] Promise unwrapKey(DOMString format, ArrayBufferView wrappe dKey, Key unwrappingKey, Dictionary unwrapAlgorithm, Dictionary? unwrappedKeyAlg orithm, boolean extractable, DOMString[] keyUsages);
43 }; 46 };
44 47
OLDNEW
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.cpp ('k') | public/platform/WebCrypto.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698