| OLD | NEW |
| 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 #include "content/child/webcrypto/nss/sym_key_nss.h" | 5 #include "content/child/webcrypto/nss/sym_key_nss.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "content/child/webcrypto/crypto_data.h" | 8 #include "content/child/webcrypto/crypto_data.h" |
| 9 #include "content/child/webcrypto/generate_key_result.h" |
| 9 #include "content/child/webcrypto/nss/key_nss.h" | 10 #include "content/child/webcrypto/nss/key_nss.h" |
| 10 #include "content/child/webcrypto/nss/util_nss.h" | 11 #include "content/child/webcrypto/nss/util_nss.h" |
| 11 #include "content/child/webcrypto/status.h" | 12 #include "content/child/webcrypto/status.h" |
| 12 #include "content/child/webcrypto/webcrypto_util.h" | 13 #include "content/child/webcrypto/webcrypto_util.h" |
| 13 #include "crypto/scoped_nss_types.h" | 14 #include "crypto/scoped_nss_types.h" |
| 14 #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h" | 15 #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h" |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 | 18 |
| 18 namespace webcrypto { | 19 namespace webcrypto { |
| 19 | 20 |
| 20 Status GenerateSecretKeyNss(const blink::WebCryptoKeyAlgorithm& algorithm, | 21 Status GenerateSecretKeyNss(const blink::WebCryptoKeyAlgorithm& algorithm, |
| 21 bool extractable, | 22 bool extractable, |
| 22 blink::WebCryptoKeyUsageMask usage_mask, | 23 blink::WebCryptoKeyUsageMask usage_mask, |
| 23 unsigned keylen_bytes, | 24 unsigned keylen_bytes, |
| 24 CK_MECHANISM_TYPE mechanism, | 25 CK_MECHANISM_TYPE mechanism, |
| 25 blink::WebCryptoKey* key) { | 26 GenerateKeyResult* result) { |
| 26 DCHECK_NE(CKM_INVALID_MECHANISM, mechanism); | 27 DCHECK_NE(CKM_INVALID_MECHANISM, mechanism); |
| 27 | 28 |
| 28 crypto::ScopedPK11Slot slot(PK11_GetInternalKeySlot()); | 29 crypto::ScopedPK11Slot slot(PK11_GetInternalKeySlot()); |
| 29 if (!slot) | 30 if (!slot) |
| 30 return Status::OperationError(); | 31 return Status::OperationError(); |
| 31 | 32 |
| 32 crypto::ScopedPK11SymKey pk11_key( | 33 crypto::ScopedPK11SymKey pk11_key( |
| 33 PK11_KeyGen(slot.get(), mechanism, NULL, keylen_bytes, NULL)); | 34 PK11_KeyGen(slot.get(), mechanism, NULL, keylen_bytes, NULL)); |
| 34 | 35 |
| 35 if (!pk11_key) | 36 if (!pk11_key) |
| 36 return Status::OperationError(); | 37 return Status::OperationError(); |
| 37 | 38 |
| 38 if (PK11_ExtractKeyValue(pk11_key.get()) != SECSuccess) | 39 if (PK11_ExtractKeyValue(pk11_key.get()) != SECSuccess) |
| 39 return Status::OperationError(); | 40 return Status::OperationError(); |
| 40 | 41 |
| 41 const SECItem* key_data = PK11_GetKeyData(pk11_key.get()); | 42 const SECItem* key_data = PK11_GetKeyData(pk11_key.get()); |
| 42 if (!key_data) | 43 if (!key_data) |
| 43 return Status::OperationError(); | 44 return Status::OperationError(); |
| 44 | 45 |
| 45 scoped_ptr<SymKeyNss> handle(new SymKeyNss( | 46 scoped_ptr<SymKeyNss> handle(new SymKeyNss( |
| 46 pk11_key.Pass(), CryptoData(key_data->data, key_data->len))); | 47 pk11_key.Pass(), CryptoData(key_data->data, key_data->len))); |
| 47 | 48 |
| 48 *key = blink::WebCryptoKey::create(handle.release(), | 49 result->AssignSecretKey( |
| 49 blink::WebCryptoKeyTypeSecret, | 50 blink::WebCryptoKey::create(handle.release(), |
| 50 extractable, | 51 blink::WebCryptoKeyTypeSecret, |
| 51 algorithm, | 52 extractable, |
| 52 usage_mask); | 53 algorithm, |
| 54 usage_mask)); |
| 55 |
| 53 return Status::Success(); | 56 return Status::Success(); |
| 54 } | 57 } |
| 55 | 58 |
| 56 Status ImportKeyRawNss(const CryptoData& key_data, | 59 Status ImportKeyRawNss(const CryptoData& key_data, |
| 57 const blink::WebCryptoKeyAlgorithm& algorithm, | 60 const blink::WebCryptoKeyAlgorithm& algorithm, |
| 58 bool extractable, | 61 bool extractable, |
| 59 blink::WebCryptoKeyUsageMask usage_mask, | 62 blink::WebCryptoKeyUsageMask usage_mask, |
| 60 CK_MECHANISM_TYPE mechanism, | 63 CK_MECHANISM_TYPE mechanism, |
| 61 CK_FLAGS flags, | 64 CK_FLAGS flags, |
| 62 blink::WebCryptoKey* key) { | 65 blink::WebCryptoKey* key) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 82 blink::WebCryptoKeyTypeSecret, | 85 blink::WebCryptoKeyTypeSecret, |
| 83 extractable, | 86 extractable, |
| 84 algorithm, | 87 algorithm, |
| 85 usage_mask); | 88 usage_mask); |
| 86 return Status::Success(); | 89 return Status::Success(); |
| 87 } | 90 } |
| 88 | 91 |
| 89 } // namespace webcrypto | 92 } // namespace webcrypto |
| 90 | 93 |
| 91 } // namespace content | 94 } // namespace content |
| OLD | NEW |