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

Side by Side Diff: content/child/webcrypto/nss/aes_key_nss.h

Issue 512023002: Refactor the interface for generating keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_CHILD_WEBCRYPTO_NSS_AES_NSS_H_ 5 #ifndef CONTENT_CHILD_WEBCRYPTO_NSS_AES_NSS_H_
6 #define CONTENT_CHILD_WEBCRYPTO_NSS_AES_NSS_H_ 6 #define CONTENT_CHILD_WEBCRYPTO_NSS_AES_NSS_H_
7 7
8 #include <pkcs11t.h> 8 #include <pkcs11t.h>
9 9
10 #include "content/child/webcrypto/algorithm_implementation.h" 10 #include "content/child/webcrypto/algorithm_implementation.h"
(...skipping 18 matching lines...) Expand all
29 blink::WebCryptoKeyUsageMask all_key_usages, 29 blink::WebCryptoKeyUsageMask all_key_usages,
30 const std::string& jwk_suffix); 30 const std::string& jwk_suffix);
31 31
32 // This is the same as the other AesAlgorithm constructor, however 32 // This is the same as the other AesAlgorithm constructor, however
33 // |import_flags| and |all_key_usages| are pre-filled to values for 33 // |import_flags| and |all_key_usages| are pre-filled to values for
34 // encryption/decryption algorithms (supports usages for: encrypt, decrypt, 34 // encryption/decryption algorithms (supports usages for: encrypt, decrypt,
35 // wrap, unwrap). 35 // wrap, unwrap).
36 AesAlgorithm(CK_MECHANISM_TYPE import_mechanism, 36 AesAlgorithm(CK_MECHANISM_TYPE import_mechanism,
37 const std::string& jwk_suffix); 37 const std::string& jwk_suffix);
38 38
39 virtual Status VerifyKeyUsagesBeforeGenerateKey( 39 virtual Status GenerateKey(const blink::WebCryptoAlgorithm& algorithm,
40 blink::WebCryptoKeyUsageMask usage_mask) const OVERRIDE; 40 bool extractable,
41 41 blink::WebCryptoKeyUsageMask usage_mask,
42 virtual Status GenerateSecretKey(const blink::WebCryptoAlgorithm& algorithm, 42 blink::WebCryptoKey*,
43 bool extractable, 43 blink::WebCryptoKey* key) const OVERRIDE;
44 blink::WebCryptoKeyUsageMask usage_mask,
45 blink::WebCryptoKey* key) const OVERRIDE;
46 44
47 virtual Status VerifyKeyUsagesBeforeImportKey( 45 virtual Status VerifyKeyUsagesBeforeImportKey(
48 blink::WebCryptoKeyFormat format, 46 blink::WebCryptoKeyFormat format,
49 blink::WebCryptoKeyUsageMask usage_mask) const OVERRIDE; 47 blink::WebCryptoKeyUsageMask usage_mask) const OVERRIDE;
50 48
51 virtual Status ImportKeyRaw(const CryptoData& key_data, 49 virtual Status ImportKeyRaw(const CryptoData& key_data,
52 const blink::WebCryptoAlgorithm& algorithm, 50 const blink::WebCryptoAlgorithm& algorithm,
53 bool extractable, 51 bool extractable,
54 blink::WebCryptoKeyUsageMask usage_mask, 52 blink::WebCryptoKeyUsageMask usage_mask,
55 blink::WebCryptoKey* key) const OVERRIDE; 53 blink::WebCryptoKey* key) const OVERRIDE;
(...skipping 15 matching lines...) Expand all
71 const CK_FLAGS import_flags_; 69 const CK_FLAGS import_flags_;
72 const blink::WebCryptoKeyUsageMask all_key_usages_; 70 const blink::WebCryptoKeyUsageMask all_key_usages_;
73 const std::string jwk_suffix_; 71 const std::string jwk_suffix_;
74 }; 72 };
75 73
76 } // namespace webcrypto 74 } // namespace webcrypto
77 75
78 } // namespace content 76 } // namespace content
79 77
80 #endif // CONTENT_CHILD_WEBCRYPTO_NSS_AES_NSS_H_ 78 #endif // CONTENT_CHILD_WEBCRYPTO_NSS_AES_NSS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698