This source file includes following definitions.
- IsSupported
- pk11_encrypt_func
- pk11_decrypt_func
- key
- AsSymKey
- AsPublicKey
- AsPrivateKey
- key
- AsSymKey
- AsPublicKey
- AsPrivateKey
- key
- AsSymKey
- AsPublicKey
- AsPrivateKey
- MakeSECItemForBuffer
- WebCryptoAlgorithmToNSSHashType
- WebCryptoHashToHMACMechanism
- AesCbcEncryptDecrypt
- AesGcmEncryptDecrypt
- WebCryptoAlgorithmToGenMechanism
- BigIntegerToLong
- IsAlgorithmRsa
- CreatePublicKeyAlgorithm
- CreatePrivateKeyAlgorithm
- WebCryptoAlgorithmToNssMechFlags
- DoUnwrapSymKeyAesKw
- CopySECItemToVector
- ReadUint
- InitRSAPrivateKey
- algorithm_id_
- consume
- ConsumeWithStatus
- finish
- FinishWithWebArrayAndStatus
- Init
- FinishInternal
- ImportKeyRaw
- ExportKeyRaw
- ValidateNssKeyTypeAgainstInputAlgorithm
- ImportKeySpki
- ExportKeySpki
- ExportRsaPublicKey
- ExportKeyPkcs8
- ImportKeyPkcs8
- SignHmac
- EncryptRsaEsPkcs1v1_5
- DecryptRsaEsPkcs1v1_5
- SignRsaSsaPkcs1v1_5
- VerifyRsaSsaPkcs1v1_5
- EncryptDecryptAesCbc
- EncryptDecryptAesGcm
- GenerateRsaKeyPair
- Init
- DigestSha
- CreateDigestor
- GenerateSecretKey
- ImportRsaPublicKey
- WrapSymKeyAesKw
- UnwrapSymKeyAesKw
- DecryptAesKw
- WrapSymKeyRsaEs
- UnwrapSymKeyRsaEs
#include "content/child/webcrypto/platform_crypto.h"
#include <cryptohi.h>
#include <pk11pub.h>
#include <secerr.h>
#include <sechash.h>
#include <vector>
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "content/child/webcrypto/crypto_data.h"
#include "content/child/webcrypto/status.h"
#include "content/child/webcrypto/webcrypto_util.h"
#include "crypto/nss_util.h"
#include "crypto/scoped_nss_types.h"
#include "third_party/WebKit/public/platform/WebArrayBuffer.h"
#include "third_party/WebKit/public/platform/WebCryptoAlgorithm.h"
#include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h"
#include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h"
#if defined(USE_NSS)
#include <dlfcn.h>
#include <secoid.h>
#endif
#if !defined(CKM_AES_GCM)
#define CKM_AES_GCM 0x00001087
struct CK_GCM_PARAMS {
CK_BYTE_PTR pIv;
CK_ULONG ulIvLen;
CK_BYTE_PTR pAAD;
CK_ULONG ulAADLen;
CK_ULONG ulTagBits;
};
#endif
typedef SECStatus (*PK11_EncryptDecryptFunction)(PK11SymKey*,
CK_MECHANISM_TYPE,
SECItem*,
unsigned char*,
unsigned int*,
unsigned int,
const unsigned char*,
unsigned int);
class AesGcmSupport {
public:
bool IsSupported() const { return pk11_encrypt_func_ && pk11_decrypt_func_; }
PK11_EncryptDecryptFunction pk11_encrypt_func() const {
return pk11_encrypt_func_;
}
PK11_EncryptDecryptFunction pk11_decrypt_func() const {
return pk11_decrypt_func_;
}
private:
friend struct base::DefaultLazyInstanceTraits<AesGcmSupport>;
AesGcmSupport() {
#if !defined(USE_NSS)
pk11_encrypt_func_ = PK11_Encrypt;
pk11_decrypt_func_ = PK11_Decrypt;
#else
pk11_encrypt_func_ = reinterpret_cast<PK11_EncryptDecryptFunction>(
dlsym(RTLD_DEFAULT, "PK11_Encrypt"));
pk11_decrypt_func_ = reinterpret_cast<PK11_EncryptDecryptFunction>(
dlsym(RTLD_DEFAULT, "PK11_Decrypt"));
#endif
}
PK11_EncryptDecryptFunction pk11_encrypt_func_;
PK11_EncryptDecryptFunction pk11_decrypt_func_;
};
base::LazyInstance<AesGcmSupport>::Leaky g_aes_gcm_support =
LAZY_INSTANCE_INITIALIZER;
namespace content {
namespace webcrypto {
namespace platform {
class SymKey : public Key {
public:
explicit SymKey(crypto::ScopedPK11SymKey key) : key_(key.Pass()) {}
PK11SymKey* key() { return key_.get(); }
virtual SymKey* AsSymKey() OVERRIDE { return this; }
virtual PublicKey* AsPublicKey() OVERRIDE { return NULL; }
virtual PrivateKey* AsPrivateKey() OVERRIDE { return NULL; }
private:
crypto::ScopedPK11SymKey key_;
DISALLOW_COPY_AND_ASSIGN(SymKey);
};
class PublicKey : public Key {
public:
explicit PublicKey(crypto::ScopedSECKEYPublicKey key) : key_(key.Pass()) {}
SECKEYPublicKey* key() { return key_.get(); }
virtual SymKey* AsSymKey() OVERRIDE { return NULL; }
virtual PublicKey* AsPublicKey() OVERRIDE { return this; }
virtual PrivateKey* AsPrivateKey() OVERRIDE { return NULL; }
private:
crypto::ScopedSECKEYPublicKey key_;
DISALLOW_COPY_AND_ASSIGN(PublicKey);
};
class PrivateKey : public Key {
public:
explicit PrivateKey(crypto::ScopedSECKEYPrivateKey key) : key_(key.Pass()) {}
SECKEYPrivateKey* key() { return key_.get(); }
virtual SymKey* AsSymKey() OVERRIDE { return NULL; }
virtual PublicKey* AsPublicKey() OVERRIDE { return NULL; }
virtual PrivateKey* AsPrivateKey() OVERRIDE { return this; }
private:
crypto::ScopedSECKEYPrivateKey key_;
DISALLOW_COPY_AND_ASSIGN(PrivateKey);
};
namespace {
SECItem MakeSECItemForBuffer(const CryptoData& buffer) {
SECItem item = {
siBuffer,
const_cast<unsigned char*>(buffer.bytes()), buffer.byte_length()};
return item;
}
HASH_HashType WebCryptoAlgorithmToNSSHashType(
blink::WebCryptoAlgorithmId algorithm) {
switch (algorithm) {
case blink::WebCryptoAlgorithmIdSha1:
return HASH_AlgSHA1;
case blink::WebCryptoAlgorithmIdSha256:
return HASH_AlgSHA256;
case blink::WebCryptoAlgorithmIdSha384:
return HASH_AlgSHA384;
case blink::WebCryptoAlgorithmIdSha512:
return HASH_AlgSHA512;
default:
return HASH_AlgNULL;
}
}
CK_MECHANISM_TYPE WebCryptoHashToHMACMechanism(
const blink::WebCryptoAlgorithm& algorithm) {
switch (algorithm.id()) {
case blink::WebCryptoAlgorithmIdSha1:
return CKM_SHA_1_HMAC;
case blink::WebCryptoAlgorithmIdSha256:
return CKM_SHA256_HMAC;
case blink::WebCryptoAlgorithmIdSha384:
return CKM_SHA384_HMAC;
case blink::WebCryptoAlgorithmIdSha512:
return CKM_SHA512_HMAC;
default:
return CKM_INVALID_MECHANISM;
}
}
Status AesCbcEncryptDecrypt(EncryptOrDecrypt mode,
SymKey* key,
const CryptoData& iv,
const CryptoData& data,
blink::WebArrayBuffer* buffer) {
CK_ATTRIBUTE_TYPE operation = (mode == ENCRYPT) ? CKA_ENCRYPT : CKA_DECRYPT;
SECItem iv_item = MakeSECItemForBuffer(iv);
crypto::ScopedSECItem param(PK11_ParamFromIV(CKM_AES_CBC_PAD, &iv_item));
if (!param)
return Status::Error();
crypto::ScopedPK11Context context(PK11_CreateContextBySymKey(
CKM_AES_CBC_PAD, operation, key->key(), param.get()));
if (!context.get())
return Status::Error();
if (data.byte_length() >= INT_MAX - AES_BLOCK_SIZE) {
return Status::ErrorDataTooLarge();
}
if (operation == CKA_DECRYPT &&
(data.byte_length() == 0 || (data.byte_length() % AES_BLOCK_SIZE != 0))) {
return Status::Error();
}
unsigned int output_max_len = data.byte_length() + AES_BLOCK_SIZE;
CHECK_GT(output_max_len, data.byte_length());
*buffer = blink::WebArrayBuffer::create(output_max_len, 1);
unsigned char* buffer_data = reinterpret_cast<unsigned char*>(buffer->data());
int output_len;
if (SECSuccess != PK11_CipherOp(context.get(),
buffer_data,
&output_len,
buffer->byteLength(),
data.bytes(),
data.byte_length())) {
return Status::Error();
}
unsigned int final_output_chunk_len;
if (SECSuccess != PK11_DigestFinal(context.get(),
buffer_data + output_len,
&final_output_chunk_len,
output_max_len - output_len)) {
return Status::Error();
}
ShrinkBuffer(buffer, final_output_chunk_len + output_len);
return Status::Success();
}
Status AesGcmEncryptDecrypt(EncryptOrDecrypt mode,
SymKey* key,
const CryptoData& data,
const CryptoData& iv,
const CryptoData& additional_data,
unsigned int tag_length_bits,
blink::WebArrayBuffer* buffer) {
if (!g_aes_gcm_support.Get().IsSupported())
return Status::ErrorUnsupported();
unsigned int tag_length_bytes = tag_length_bits / 8;
CK_GCM_PARAMS gcm_params = {0};
gcm_params.pIv = const_cast<unsigned char*>(iv.bytes());
gcm_params.ulIvLen = iv.byte_length();
gcm_params.pAAD = const_cast<unsigned char*>(additional_data.bytes());
gcm_params.ulAADLen = additional_data.byte_length();
gcm_params.ulTagBits = tag_length_bits;
SECItem param;
param.type = siBuffer;
param.data = reinterpret_cast<unsigned char*>(&gcm_params);
param.len = sizeof(gcm_params);
unsigned int buffer_size = 0;
if (mode == ENCRYPT) {
if (data.byte_length() > (UINT_MAX - tag_length_bytes))
return Status::ErrorDataTooLarge();
buffer_size = data.byte_length() + tag_length_bytes;
} else {
buffer_size = data.byte_length();
}
*buffer = blink::WebArrayBuffer::create(buffer_size, 1);
unsigned char* buffer_data = reinterpret_cast<unsigned char*>(buffer->data());
PK11_EncryptDecryptFunction func =
(mode == ENCRYPT) ? g_aes_gcm_support.Get().pk11_encrypt_func()
: g_aes_gcm_support.Get().pk11_decrypt_func();
unsigned int output_len = 0;
SECStatus result = func(key->key(),
CKM_AES_GCM,
¶m,
buffer_data,
&output_len,
buffer->byteLength(),
data.bytes(),
data.byte_length());
if (result != SECSuccess)
return Status::Error();
ShrinkBuffer(buffer, output_len);
return Status::Success();
}
CK_MECHANISM_TYPE WebCryptoAlgorithmToGenMechanism(
const blink::WebCryptoAlgorithm& algorithm) {
switch (algorithm.id()) {
case blink::WebCryptoAlgorithmIdAesCbc:
case blink::WebCryptoAlgorithmIdAesGcm:
case blink::WebCryptoAlgorithmIdAesKw:
return CKM_AES_KEY_GEN;
case blink::WebCryptoAlgorithmIdHmac:
return WebCryptoHashToHMACMechanism(algorithm.hmacKeyGenParams()->hash());
default:
return CKM_INVALID_MECHANISM;
}
}
bool BigIntegerToLong(const uint8* data,
unsigned int data_size,
unsigned long* result) {
if (data_size == 0)
return false;
*result = 0;
for (size_t i = 0; i < data_size; ++i) {
size_t reverse_i = data_size - i - 1;
if (reverse_i >= sizeof(unsigned long) && data[i])
return false;
*result |= data[i] << 8 * reverse_i;
}
return true;
}
bool IsAlgorithmRsa(const blink::WebCryptoAlgorithm& algorithm) {
return algorithm.id() == blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5 ||
algorithm.id() == blink::WebCryptoAlgorithmIdRsaOaep ||
algorithm.id() == blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5;
}
bool CreatePublicKeyAlgorithm(const blink::WebCryptoAlgorithm& algorithm,
SECKEYPublicKey* key,
blink::WebCryptoKeyAlgorithm* key_algorithm) {
if (!key || key->keyType != rsaKey)
return false;
unsigned int modulus_length_bits = SECKEY_PublicKeyStrength(key) * 8;
CryptoData public_exponent(key->u.rsa.publicExponent.data,
key->u.rsa.publicExponent.len);
switch (algorithm.paramsType()) {
case blink::WebCryptoAlgorithmParamsTypeRsaHashedImportParams:
case blink::WebCryptoAlgorithmParamsTypeRsaHashedKeyGenParams:
*key_algorithm = blink::WebCryptoKeyAlgorithm::createRsaHashed(
algorithm.id(),
modulus_length_bits,
public_exponent.bytes(),
public_exponent.byte_length(),
GetInnerHashAlgorithm(algorithm).id());
return true;
case blink::WebCryptoAlgorithmParamsTypeRsaKeyGenParams:
case blink::WebCryptoAlgorithmParamsTypeNone:
*key_algorithm = blink::WebCryptoKeyAlgorithm::createRsa(
algorithm.id(),
modulus_length_bits,
public_exponent.bytes(),
public_exponent.byte_length());
return true;
default:
return false;
}
}
bool CreatePrivateKeyAlgorithm(const blink::WebCryptoAlgorithm& algorithm,
SECKEYPrivateKey* key,
blink::WebCryptoKeyAlgorithm* key_algorithm) {
crypto::ScopedSECKEYPublicKey public_key(SECKEY_ConvertToPublicKey(key));
return CreatePublicKeyAlgorithm(algorithm, public_key.get(), key_algorithm);
}
const unsigned char kAesIv[] = {0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6};
Status WebCryptoAlgorithmToNssMechFlags(
const blink::WebCryptoAlgorithm& algorithm,
CK_MECHANISM_TYPE* mechanism,
CK_FLAGS* flags) {
switch (algorithm.id()) {
case blink::WebCryptoAlgorithmIdHmac: {
const blink::WebCryptoAlgorithm hash = GetInnerHashAlgorithm(algorithm);
*mechanism = WebCryptoHashToHMACMechanism(hash);
if (*mechanism == CKM_INVALID_MECHANISM)
return Status::ErrorUnsupported();
*flags = CKF_SIGN | CKF_VERIFY;
break;
}
case blink::WebCryptoAlgorithmIdAesCbc: {
*mechanism = CKM_AES_CBC;
*flags = CKF_ENCRYPT | CKF_DECRYPT;
break;
}
case blink::WebCryptoAlgorithmIdAesKw: {
*mechanism = CKM_NSS_AES_KEY_WRAP;
*flags = CKF_WRAP | CKF_WRAP;
break;
}
case blink::WebCryptoAlgorithmIdAesGcm: {
if (!g_aes_gcm_support.Get().IsSupported())
return Status::ErrorUnsupported();
*mechanism = CKM_AES_GCM;
*flags = CKF_ENCRYPT | CKF_DECRYPT;
break;
}
default:
return Status::ErrorUnsupported();
}
return Status::Success();
}
Status DoUnwrapSymKeyAesKw(const CryptoData& wrapped_key_data,
SymKey* wrapping_key,
CK_MECHANISM_TYPE mechanism,
CK_FLAGS flags,
crypto::ScopedPK11SymKey* unwrapped_key) {
DCHECK_GE(wrapped_key_data.byte_length(), 24u);
DCHECK_EQ(wrapped_key_data.byte_length() % 8, 0u);
SECItem iv_item = MakeSECItemForBuffer(CryptoData(kAesIv, sizeof(kAesIv)));
crypto::ScopedSECItem param_item(
PK11_ParamFromIV(CKM_NSS_AES_KEY_WRAP, &iv_item));
if (!param_item)
return Status::ErrorUnexpected();
SECItem cipher_text = MakeSECItemForBuffer(wrapped_key_data);
const unsigned int plaintext_length = wrapped_key_data.byte_length() - 8;
#if defined(USE_NSS)
PORT_SetError(0);
#endif
crypto::ScopedPK11SymKey new_key(PK11_UnwrapSymKey(wrapping_key->key(),
CKM_NSS_AES_KEY_WRAP,
param_item.get(),
&cipher_text,
mechanism,
flags,
plaintext_length));
if (!new_key)
return Status::Error();
#if defined(USE_NSS)
if (!NSS_VersionCheck("3.16") && PORT_GetError() == SEC_ERROR_BAD_DATA)
return Status::Error();
#endif
*unwrapped_key = new_key.Pass();
return Status::Success();
}
void CopySECItemToVector(const SECItem& item, std::vector<uint8>* out) {
out->assign(item.data, item.data + item.len);
}
#if defined(USE_NSS)
struct RSAPrivateKey {
SECItem version;
SECItem modulus;
SECItem public_exponent;
SECItem private_exponent;
SECItem prime1;
SECItem prime2;
SECItem exponent1;
SECItem exponent2;
SECItem coefficient;
};
const SEC_ASN1Template RSAPrivateKeyTemplate[] = {
{SEC_ASN1_SEQUENCE, 0, NULL, sizeof(RSAPrivateKey)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, version)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, modulus)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, public_exponent)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, private_exponent)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, prime1)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, prime2)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, exponent1)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, exponent2)},
{SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, coefficient)},
{0}};
bool ReadUint(SECKEYPrivateKey* key,
CK_ATTRIBUTE_TYPE attribute,
SECItem* value) {
SECStatus rv = PK11_ReadRawAttribute(PK11_TypePrivKey, key, attribute, value);
value->type = siUnsignedInteger;
return rv == SECSuccess;
}
bool InitRSAPrivateKey(SECKEYPrivateKey* key, RSAPrivateKey* out) {
if (key->keyType != rsaKey)
return false;
DCHECK(!out->version.data);
DCHECK(!out->version.len);
DCHECK(!out->modulus.data);
DCHECK(!out->modulus.len);
if (!SEC_ASN1EncodeInteger(NULL, &out->version, 0))
return false;
if (!ReadUint(key, CKA_MODULUS, &out->modulus))
return false;
if (!ReadUint(key, CKA_PUBLIC_EXPONENT, &out->public_exponent))
return false;
if (!ReadUint(key, CKA_PRIVATE_EXPONENT, &out->private_exponent))
return false;
if (!ReadUint(key, CKA_PRIME_1, &out->prime1))
return false;
if (!ReadUint(key, CKA_PRIME_2, &out->prime2))
return false;
if (!ReadUint(key, CKA_EXPONENT_1, &out->exponent1))
return false;
if (!ReadUint(key, CKA_EXPONENT_2, &out->exponent2))
return false;
if (!ReadUint(key, CKA_COEFFICIENT, &out->coefficient))
return false;
return true;
}
struct FreeRsaPrivateKey {
void operator()(RSAPrivateKey* out) {
SECITEM_FreeItem(&out->version, PR_FALSE);
SECITEM_FreeItem(&out->modulus, PR_FALSE);
SECITEM_FreeItem(&out->public_exponent, PR_FALSE);
SECITEM_FreeItem(&out->private_exponent, PR_FALSE);
SECITEM_FreeItem(&out->prime1, PR_FALSE);
SECITEM_FreeItem(&out->prime2, PR_FALSE);
SECITEM_FreeItem(&out->exponent1, PR_FALSE);
SECITEM_FreeItem(&out->exponent2, PR_FALSE);
SECITEM_FreeItem(&out->coefficient, PR_FALSE);
}
};
#endif
}
class DigestorNSS : public blink::WebCryptoDigestor {
public:
explicit DigestorNSS(blink::WebCryptoAlgorithmId algorithm_id)
: hash_context_(NULL), algorithm_id_(algorithm_id) {}
virtual ~DigestorNSS() {
if (!hash_context_)
return;
HASH_Destroy(hash_context_);
hash_context_ = NULL;
}
virtual bool consume(const unsigned char* data, unsigned int size) {
return ConsumeWithStatus(data, size).IsSuccess();
}
Status ConsumeWithStatus(const unsigned char* data, unsigned int size) {
if (!hash_context_) {
Status error = Init();
if (!error.IsSuccess())
return error;
}
HASH_Update(hash_context_, data, size);
return Status::Success();
}
virtual bool finish(unsigned char*& result_data,
unsigned int& result_data_size) {
Status error = FinishInternal(result_, &result_data_size);
if (!error.IsSuccess())
return false;
result_data = result_;
return true;
}
Status FinishWithWebArrayAndStatus(blink::WebArrayBuffer* result) {
if (!hash_context_)
return Status::ErrorUnexpected();
unsigned int result_length = HASH_ResultLenContext(hash_context_);
*result = blink::WebArrayBuffer::create(result_length, 1);
unsigned char* digest = reinterpret_cast<unsigned char*>(result->data());
unsigned int digest_size;
return FinishInternal(digest, &digest_size);
}
private:
Status Init() {
HASH_HashType hash_type = WebCryptoAlgorithmToNSSHashType(algorithm_id_);
if (hash_type == HASH_AlgNULL)
return Status::ErrorUnsupported();
hash_context_ = HASH_Create(hash_type);
if (!hash_context_)
return Status::Error();
HASH_Begin(hash_context_);
return Status::Success();
}
Status FinishInternal(unsigned char* result, unsigned int* result_size) {
if (!hash_context_) {
Status error = Init();
if (!error.IsSuccess())
return error;
}
unsigned int hash_result_length = HASH_ResultLenContext(hash_context_);
DCHECK_LE(hash_result_length, static_cast<size_t>(HASH_LENGTH_MAX));
HASH_End(hash_context_, result, result_size, hash_result_length);
if (*result_size != hash_result_length)
return Status::ErrorUnexpected();
return Status::Success();
}
HASHContext* hash_context_;
blink::WebCryptoAlgorithmId algorithm_id_;
unsigned char result_[HASH_LENGTH_MAX];
};
Status ImportKeyRaw(const blink::WebCryptoAlgorithm& algorithm,
const CryptoData& key_data,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
blink::WebCryptoKey* key) {
DCHECK(!algorithm.isNull());
CK_MECHANISM_TYPE mechanism;
CK_FLAGS flags;
Status status =
WebCryptoAlgorithmToNssMechFlags(algorithm, &mechanism, &flags);
if (status.IsError())
return status;
SECItem key_item = MakeSECItemForBuffer(key_data);
crypto::ScopedPK11Slot slot(PK11_GetInternalSlot());
crypto::ScopedPK11SymKey pk11_sym_key(
PK11_ImportSymKeyWithFlags(slot.get(),
mechanism,
PK11_OriginUnwrap,
CKA_FLAGS_ONLY,
&key_item,
flags,
false,
NULL));
if (!pk11_sym_key.get())
return Status::Error();
blink::WebCryptoKeyAlgorithm key_algorithm;
if (!CreateSecretKeyAlgorithm(
algorithm, key_data.byte_length(), &key_algorithm))
return Status::ErrorUnexpected();
*key = blink::WebCryptoKey::create(new SymKey(pk11_sym_key.Pass()),
blink::WebCryptoKeyTypeSecret,
extractable,
key_algorithm,
usage_mask);
return Status::Success();
}
Status ExportKeyRaw(SymKey* key, blink::WebArrayBuffer* buffer) {
if (PK11_ExtractKeyValue(key->key()) != SECSuccess)
return Status::Error();
const SECItem* key_data = PK11_GetKeyData(key->key());
if (!key_data)
return Status::Error();
*buffer = CreateArrayBuffer(key_data->data, key_data->len);
return Status::Success();
}
namespace {
typedef scoped_ptr<CERTSubjectPublicKeyInfo,
crypto::NSSDestroyer<CERTSubjectPublicKeyInfo,
SECKEY_DestroySubjectPublicKeyInfo> >
ScopedCERTSubjectPublicKeyInfo;
bool ValidateNssKeyTypeAgainstInputAlgorithm(
KeyType key_type,
const blink::WebCryptoAlgorithm& algorithm) {
switch (key_type) {
case rsaKey:
return IsAlgorithmRsa(algorithm);
case dsaKey:
case ecKey:
case rsaPssKey:
case rsaOaepKey:
break;
default:
break;
}
return false;
}
}
Status ImportKeySpki(const blink::WebCryptoAlgorithm& algorithm,
const CryptoData& key_data,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
blink::WebCryptoKey* key) {
DCHECK(key);
if (!key_data.byte_length())
return Status::ErrorImportEmptyKeyData();
DCHECK(key_data.bytes());
SECItem spki_item = MakeSECItemForBuffer(key_data);
const ScopedCERTSubjectPublicKeyInfo spki(
SECKEY_DecodeDERSubjectPublicKeyInfo(&spki_item));
if (!spki)
return Status::Error();
crypto::ScopedSECKEYPublicKey sec_public_key(
SECKEY_ExtractPublicKey(spki.get()));
if (!sec_public_key)
return Status::Error();
const KeyType sec_key_type = SECKEY_GetPublicKeyType(sec_public_key.get());
if (!ValidateNssKeyTypeAgainstInputAlgorithm(sec_key_type, algorithm))
return Status::Error();
blink::WebCryptoKeyAlgorithm key_algorithm;
if (!CreatePublicKeyAlgorithm(
algorithm, sec_public_key.get(), &key_algorithm))
return Status::ErrorUnexpected();
*key = blink::WebCryptoKey::create(new PublicKey(sec_public_key.Pass()),
blink::WebCryptoKeyTypePublic,
extractable,
key_algorithm,
usage_mask);
return Status::Success();
}
Status ExportKeySpki(PublicKey* key, blink::WebArrayBuffer* buffer) {
const crypto::ScopedSECItem spki_der(
SECKEY_EncodeDERSubjectPublicKeyInfo(key->key()));
if (!spki_der)
return Status::Error();
DCHECK(spki_der->data);
DCHECK(spki_der->len);
*buffer = CreateArrayBuffer(spki_der->data, spki_der->len);
return Status::Success();
}
Status ExportRsaPublicKey(PublicKey* key,
std::vector<uint8>* modulus,
std::vector<uint8>* public_exponent) {
DCHECK(key);
DCHECK(key->key());
if (key->key()->keyType != rsaKey)
return Status::ErrorUnsupported();
CopySECItemToVector(key->key()->u.rsa.modulus, modulus);
CopySECItemToVector(key->key()->u.rsa.publicExponent, public_exponent);
if (modulus->empty() || public_exponent->empty())
return Status::ErrorUnexpected();
return Status::Success();
}
Status ExportKeyPkcs8(PrivateKey* key,
const blink::WebCryptoKeyAlgorithm& key_algorithm,
blink::WebArrayBuffer* buffer) {
if (key_algorithm.id() != blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5 &&
key_algorithm.id() != blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5)
return Status::ErrorUnsupported();
#if defined(USE_NSS)
const SECOidTag algorithm = SEC_OID_PKCS1_RSA_ENCRYPTION;
const int kPrivateKeyInfoVersion = 0;
SECKEYPrivateKeyInfo private_key_info = {};
RSAPrivateKey rsa_private_key = {};
scoped_ptr<RSAPrivateKey, FreeRsaPrivateKey> free_private_key(
&rsa_private_key);
if (!InitRSAPrivateKey(key->key(), &rsa_private_key))
return Status::Error();
crypto::ScopedPLArenaPool arena(PORT_NewArena(DER_DEFAULT_CHUNKSIZE));
if (!arena.get())
return Status::Error();
if (!SEC_ASN1EncodeItem(arena.get(),
&private_key_info.privateKey,
&rsa_private_key,
RSAPrivateKeyTemplate))
return Status::Error();
if (SECSuccess !=
SECOID_SetAlgorithmID(
arena.get(), &private_key_info.algorithm, algorithm, NULL))
return Status::Error();
if (!SEC_ASN1EncodeInteger(
arena.get(), &private_key_info.version, kPrivateKeyInfoVersion))
return Status::Error();
crypto::ScopedSECItem encoded_key(
SEC_ASN1EncodeItem(NULL,
NULL,
&private_key_info,
SEC_ASN1_GET(SECKEY_PrivateKeyInfoTemplate)));
#else
crypto::ScopedSECItem encoded_key(
PK11_ExportDERPrivateKeyInfo(key->key(), NULL));
#endif
if (!encoded_key.get())
return Status::Error();
*buffer = CreateArrayBuffer(encoded_key->data, encoded_key->len);
return Status::Success();
}
Status ImportKeyPkcs8(const blink::WebCryptoAlgorithm& algorithm,
const CryptoData& key_data,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
blink::WebCryptoKey* key) {
DCHECK(key);
if (!key_data.byte_length())
return Status::ErrorImportEmptyKeyData();
DCHECK(key_data.bytes());
SECItem pki_der = MakeSECItemForBuffer(key_data);
SECKEYPrivateKey* seckey_private_key = NULL;
crypto::ScopedPK11Slot slot(PK11_GetInternalSlot());
if (PK11_ImportDERPrivateKeyInfoAndReturnKey(slot.get(),
&pki_der,
NULL,
NULL,
false,
false,
KU_ALL,
&seckey_private_key,
NULL) != SECSuccess) {
return Status::Error();
}
DCHECK(seckey_private_key);
crypto::ScopedSECKEYPrivateKey private_key(seckey_private_key);
const KeyType sec_key_type = SECKEY_GetPrivateKeyType(private_key.get());
if (!ValidateNssKeyTypeAgainstInputAlgorithm(sec_key_type, algorithm))
return Status::Error();
blink::WebCryptoKeyAlgorithm key_algorithm;
if (!CreatePrivateKeyAlgorithm(algorithm, private_key.get(), &key_algorithm))
return Status::ErrorUnexpected();
*key = blink::WebCryptoKey::create(new PrivateKey(private_key.Pass()),
blink::WebCryptoKeyTypePrivate,
extractable,
key_algorithm,
usage_mask);
return Status::Success();
}
Status SignHmac(SymKey* key,
const blink::WebCryptoAlgorithm& hash,
const CryptoData& data,
blink::WebArrayBuffer* buffer) {
DCHECK_EQ(PK11_GetMechanism(key->key()), WebCryptoHashToHMACMechanism(hash));
SECItem param_item = {siBuffer, NULL, 0};
SECItem data_item = MakeSECItemForBuffer(data);
SECItem signature_item = {siBuffer, NULL, 0};
if (PK11_SignWithSymKey(key->key(),
PK11_GetMechanism(key->key()),
¶m_item,
&signature_item,
&data_item) != SECSuccess) {
return Status::Error();
}
DCHECK_NE(0u, signature_item.len);
*buffer = blink::WebArrayBuffer::create(signature_item.len, 1);
signature_item.data = reinterpret_cast<unsigned char*>(buffer->data());
if (PK11_SignWithSymKey(key->key(),
PK11_GetMechanism(key->key()),
¶m_item,
&signature_item,
&data_item) != SECSuccess) {
return Status::Error();
}
DCHECK_EQ(buffer->byteLength(), signature_item.len);
return Status::Success();
}
Status EncryptRsaEsPkcs1v1_5(PublicKey* key,
const CryptoData& data,
blink::WebArrayBuffer* buffer) {
const unsigned int encrypted_length_bytes =
SECKEY_PublicKeyStrength(key->key());
if (encrypted_length_bytes < 11 ||
encrypted_length_bytes - 11 < data.byte_length())
return Status::ErrorDataTooLarge();
*buffer = blink::WebArrayBuffer::create(encrypted_length_bytes, 1);
unsigned char* const buffer_data =
reinterpret_cast<unsigned char*>(buffer->data());
if (PK11_PubEncryptPKCS1(key->key(),
buffer_data,
const_cast<unsigned char*>(data.bytes()),
data.byte_length(),
NULL) != SECSuccess) {
return Status::Error();
}
return Status::Success();
}
Status DecryptRsaEsPkcs1v1_5(PrivateKey* key,
const CryptoData& data,
blink::WebArrayBuffer* buffer) {
const int modulus_length_bytes = PK11_GetPrivateModulusLen(key->key());
if (modulus_length_bytes <= 0)
return Status::ErrorUnexpected();
const unsigned int max_output_length_bytes = modulus_length_bytes;
*buffer = blink::WebArrayBuffer::create(max_output_length_bytes, 1);
unsigned char* const buffer_data =
reinterpret_cast<unsigned char*>(buffer->data());
unsigned int output_length_bytes = 0;
if (PK11_PrivDecryptPKCS1(key->key(),
buffer_data,
&output_length_bytes,
max_output_length_bytes,
const_cast<unsigned char*>(data.bytes()),
data.byte_length()) != SECSuccess) {
return Status::Error();
}
DCHECK_LE(output_length_bytes, max_output_length_bytes);
ShrinkBuffer(buffer, output_length_bytes);
return Status::Success();
}
Status SignRsaSsaPkcs1v1_5(PrivateKey* key,
const blink::WebCryptoAlgorithm& hash,
const CryptoData& data,
blink::WebArrayBuffer* buffer) {
SECOidTag sign_alg_tag;
switch (hash.id()) {
case blink::WebCryptoAlgorithmIdSha1:
sign_alg_tag = SEC_OID_PKCS1_SHA1_WITH_RSA_ENCRYPTION;
break;
case blink::WebCryptoAlgorithmIdSha256:
sign_alg_tag = SEC_OID_PKCS1_SHA256_WITH_RSA_ENCRYPTION;
break;
case blink::WebCryptoAlgorithmIdSha384:
sign_alg_tag = SEC_OID_PKCS1_SHA384_WITH_RSA_ENCRYPTION;
break;
case blink::WebCryptoAlgorithmIdSha512:
sign_alg_tag = SEC_OID_PKCS1_SHA512_WITH_RSA_ENCRYPTION;
break;
default:
return Status::ErrorUnsupported();
}
crypto::ScopedSECItem signature_item(SECITEM_AllocItem(NULL, NULL, 0));
if (SEC_SignData(signature_item.get(),
data.bytes(),
data.byte_length(),
key->key(),
sign_alg_tag) != SECSuccess) {
return Status::Error();
}
*buffer = CreateArrayBuffer(signature_item->data, signature_item->len);
return Status::Success();
}
Status VerifyRsaSsaPkcs1v1_5(PublicKey* key,
const blink::WebCryptoAlgorithm& hash,
const CryptoData& signature,
const CryptoData& data,
bool* signature_match) {
const SECItem signature_item = MakeSECItemForBuffer(signature);
SECOidTag hash_alg_tag;
switch (hash.id()) {
case blink::WebCryptoAlgorithmIdSha1:
hash_alg_tag = SEC_OID_SHA1;
break;
case blink::WebCryptoAlgorithmIdSha256:
hash_alg_tag = SEC_OID_SHA256;
break;
case blink::WebCryptoAlgorithmIdSha384:
hash_alg_tag = SEC_OID_SHA384;
break;
case blink::WebCryptoAlgorithmIdSha512:
hash_alg_tag = SEC_OID_SHA512;
break;
default:
return Status::ErrorUnsupported();
}
*signature_match =
SECSuccess == VFY_VerifyDataDirect(data.bytes(),
data.byte_length(),
key->key(),
&signature_item,
SEC_OID_PKCS1_RSA_ENCRYPTION,
hash_alg_tag,
NULL,
NULL);
return Status::Success();
}
Status EncryptDecryptAesCbc(EncryptOrDecrypt mode,
SymKey* key,
const CryptoData& data,
const CryptoData& iv,
blink::WebArrayBuffer* buffer) {
return AesCbcEncryptDecrypt(mode, key, iv, data, buffer);
}
Status EncryptDecryptAesGcm(EncryptOrDecrypt mode,
SymKey* key,
const CryptoData& data,
const CryptoData& iv,
const CryptoData& additional_data,
unsigned int tag_length_bits,
blink::WebArrayBuffer* buffer) {
return AesGcmEncryptDecrypt(
mode, key, data, iv, additional_data, tag_length_bits, buffer);
}
Status GenerateRsaKeyPair(const blink::WebCryptoAlgorithm& algorithm,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
unsigned int modulus_length_bits,
const CryptoData& public_exponent,
const blink::WebCryptoAlgorithm& hash_or_null,
blink::WebCryptoKey* public_key,
blink::WebCryptoKey* private_key) {
crypto::ScopedPK11Slot slot(PK11_GetInternalKeySlot());
if (!slot)
return Status::Error();
unsigned long public_exponent_long;
if (!BigIntegerToLong(public_exponent.bytes(),
public_exponent.byte_length(),
&public_exponent_long) ||
!public_exponent_long) {
return Status::ErrorGenerateKeyPublicExponent();
}
PK11RSAGenParams rsa_gen_params;
rsa_gen_params.keySizeInBits = modulus_length_bits;
rsa_gen_params.pe = public_exponent_long;
CK_FLAGS operation_flags;
switch (algorithm.id()) {
case blink::WebCryptoAlgorithmIdRsaEsPkcs1v1_5:
case blink::WebCryptoAlgorithmIdRsaOaep:
operation_flags = CKF_ENCRYPT | CKF_DECRYPT | CKF_WRAP | CKF_UNWRAP;
break;
case blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5:
operation_flags = CKF_SIGN | CKF_VERIFY;
break;
default:
NOTREACHED();
return Status::ErrorUnexpected();
}
const CK_FLAGS operation_flags_mask =
CKF_ENCRYPT | CKF_DECRYPT | CKF_SIGN | CKF_VERIFY | CKF_WRAP | CKF_UNWRAP;
const PK11AttrFlags attribute_flags =
PK11_ATTR_INSENSITIVE | PK11_ATTR_EXTRACTABLE;
SECKEYPublicKey* sec_public_key;
crypto::ScopedSECKEYPrivateKey scoped_sec_private_key(
PK11_GenerateKeyPairWithOpFlags(slot.get(),
CKM_RSA_PKCS_KEY_PAIR_GEN,
&rsa_gen_params,
&sec_public_key,
attribute_flags,
operation_flags,
operation_flags_mask,
NULL));
if (!private_key)
return Status::Error();
blink::WebCryptoKeyAlgorithm key_algorithm;
if (!CreatePublicKeyAlgorithm(algorithm, sec_public_key, &key_algorithm))
return Status::ErrorUnexpected();
*public_key = blink::WebCryptoKey::create(
new PublicKey(crypto::ScopedSECKEYPublicKey(sec_public_key)),
blink::WebCryptoKeyTypePublic,
true,
key_algorithm,
usage_mask);
*private_key =
blink::WebCryptoKey::create(new PrivateKey(scoped_sec_private_key.Pass()),
blink::WebCryptoKeyTypePrivate,
extractable,
key_algorithm,
usage_mask);
return Status::Success();
}
void Init() { crypto::EnsureNSSInit(); }
Status DigestSha(blink::WebCryptoAlgorithmId algorithm,
const CryptoData& data,
blink::WebArrayBuffer* buffer) {
DigestorNSS digestor(algorithm);
Status error = digestor.ConsumeWithStatus(data.bytes(), data.byte_length());
if (!error.IsSuccess())
return error;
return digestor.FinishWithWebArrayAndStatus(buffer);
}
scoped_ptr<blink::WebCryptoDigestor> CreateDigestor(
blink::WebCryptoAlgorithmId algorithm_id) {
return scoped_ptr<blink::WebCryptoDigestor>(new DigestorNSS(algorithm_id));
}
Status GenerateSecretKey(const blink::WebCryptoAlgorithm& algorithm,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
unsigned keylen_bytes,
blink::WebCryptoKey* key) {
CK_MECHANISM_TYPE mech = WebCryptoAlgorithmToGenMechanism(algorithm);
blink::WebCryptoKeyType key_type = blink::WebCryptoKeyTypeSecret;
if (mech == CKM_INVALID_MECHANISM)
return Status::ErrorUnsupported();
crypto::ScopedPK11Slot slot(PK11_GetInternalKeySlot());
if (!slot)
return Status::Error();
crypto::ScopedPK11SymKey pk11_key(
PK11_KeyGen(slot.get(), mech, NULL, keylen_bytes, NULL));
if (!pk11_key)
return Status::Error();
blink::WebCryptoKeyAlgorithm key_algorithm;
if (!CreateSecretKeyAlgorithm(algorithm, keylen_bytes, &key_algorithm))
return Status::ErrorUnexpected();
*key = blink::WebCryptoKey::create(new SymKey(pk11_key.Pass()),
key_type,
extractable,
key_algorithm,
usage_mask);
return Status::Success();
}
Status ImportRsaPublicKey(const blink::WebCryptoAlgorithm& algorithm,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
const CryptoData& modulus_data,
const CryptoData& exponent_data,
blink::WebCryptoKey* key) {
if (!modulus_data.byte_length())
return Status::ErrorImportRsaEmptyModulus();
if (!exponent_data.byte_length())
return Status::ErrorImportRsaEmptyExponent();
DCHECK(modulus_data.bytes());
DCHECK(exponent_data.bytes());
struct RsaPublicKeyData {
SECItem modulus;
SECItem exponent;
};
const RsaPublicKeyData pubkey_in = {
{siUnsignedInteger, const_cast<unsigned char*>(modulus_data.bytes()),
modulus_data.byte_length()},
{siUnsignedInteger, const_cast<unsigned char*>(exponent_data.bytes()),
exponent_data.byte_length()}};
const SEC_ASN1Template rsa_public_key_template[] = {
{SEC_ASN1_SEQUENCE, 0, NULL, sizeof(RsaPublicKeyData)},
{SEC_ASN1_INTEGER, offsetof(RsaPublicKeyData, modulus), },
{SEC_ASN1_INTEGER, offsetof(RsaPublicKeyData, exponent), },
{0, }};
crypto::ScopedSECItem pubkey_der(
SEC_ASN1EncodeItem(NULL, NULL, &pubkey_in, rsa_public_key_template));
if (!pubkey_der)
return Status::Error();
crypto::ScopedSECKEYPublicKey pubkey(
SECKEY_ImportDERPublicKey(pubkey_der.get(), CKK_RSA));
if (!pubkey)
return Status::Error();
blink::WebCryptoKeyAlgorithm key_algorithm;
if (!CreatePublicKeyAlgorithm(algorithm, pubkey.get(), &key_algorithm))
return Status::ErrorUnexpected();
*key = blink::WebCryptoKey::create(new PublicKey(pubkey.Pass()),
blink::WebCryptoKeyTypePublic,
extractable,
key_algorithm,
usage_mask);
return Status::Success();
}
Status WrapSymKeyAesKw(SymKey* wrapping_key,
SymKey* key,
blink::WebArrayBuffer* buffer) {
const unsigned int input_length = PK11_GetKeyLength(key->key());
if (input_length < 16)
return Status::ErrorDataTooSmall();
if (input_length > UINT_MAX - 8)
return Status::ErrorDataTooLarge();
if (input_length % 8)
return Status::ErrorInvalidAesKwDataLength();
SECItem iv_item = MakeSECItemForBuffer(CryptoData(kAesIv, sizeof(kAesIv)));
crypto::ScopedSECItem param_item(
PK11_ParamFromIV(CKM_NSS_AES_KEY_WRAP, &iv_item));
if (!param_item)
return Status::ErrorUnexpected();
const unsigned int output_length = input_length + 8;
*buffer = blink::WebArrayBuffer::create(output_length, 1);
SECItem wrapped_key_item = MakeSECItemForBuffer(CryptoData(*buffer));
if (SECSuccess != PK11_WrapSymKey(CKM_NSS_AES_KEY_WRAP,
param_item.get(),
wrapping_key->key(),
key->key(),
&wrapped_key_item)) {
return Status::Error();
}
if (output_length != wrapped_key_item.len)
return Status::ErrorUnexpected();
return Status::Success();
}
Status UnwrapSymKeyAesKw(const CryptoData& wrapped_key_data,
SymKey* wrapping_key,
const blink::WebCryptoAlgorithm& algorithm,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
blink::WebCryptoKey* key) {
CK_MECHANISM_TYPE mechanism;
CK_FLAGS flags;
Status status =
WebCryptoAlgorithmToNssMechFlags(algorithm, &mechanism, &flags);
if (status.IsError())
return status;
crypto::ScopedPK11SymKey unwrapped_key;
status = DoUnwrapSymKeyAesKw(
wrapped_key_data, wrapping_key, mechanism, flags, &unwrapped_key);
if (status.IsError())
return status;
blink::WebCryptoKeyAlgorithm key_algorithm;
if (!CreateSecretKeyAlgorithm(
algorithm, PK11_GetKeyLength(unwrapped_key.get()), &key_algorithm))
return Status::ErrorUnexpected();
*key = blink::WebCryptoKey::create(new SymKey(unwrapped_key.Pass()),
blink::WebCryptoKeyTypeSecret,
extractable,
key_algorithm,
usage_mask);
return Status::Success();
}
Status DecryptAesKw(SymKey* wrapping_key,
const CryptoData& data,
blink::WebArrayBuffer* buffer) {
crypto::ScopedPK11SymKey decrypted;
Status status = DoUnwrapSymKeyAesKw(
data, wrapping_key, CKK_GENERIC_SECRET, CKA_ENCRYPT, &decrypted);
if (status.IsError())
return status;
if (PK11_ExtractKeyValue(decrypted.get()) != SECSuccess)
return Status::Error();
const SECItem* const key_data = PK11_GetKeyData(decrypted.get());
if (!key_data)
return Status::Error();
*buffer = webcrypto::CreateArrayBuffer(key_data->data, key_data->len);
return Status::Success();
}
Status WrapSymKeyRsaEs(PublicKey* wrapping_key,
SymKey* key,
blink::WebArrayBuffer* buffer) {
const unsigned int input_length_bytes = PK11_GetKeyLength(key->key());
const unsigned int modulus_length_bytes =
SECKEY_PublicKeyStrength(wrapping_key->key());
if (modulus_length_bytes < 11 ||
modulus_length_bytes - 11 < input_length_bytes)
return Status::ErrorDataTooLarge();
*buffer = blink::WebArrayBuffer::create(modulus_length_bytes, 1);
SECItem wrapped_key_item = MakeSECItemForBuffer(CryptoData(*buffer));
if (SECSuccess !=
PK11_PubWrapSymKey(
CKM_RSA_PKCS, wrapping_key->key(), key->key(), &wrapped_key_item)) {
return Status::Error();
}
if (wrapped_key_item.len != modulus_length_bytes)
return Status::ErrorUnexpected();
return Status::Success();
}
Status UnwrapSymKeyRsaEs(const CryptoData& wrapped_key_data,
PrivateKey* wrapping_key,
const blink::WebCryptoAlgorithm& algorithm,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
blink::WebCryptoKey* key) {
const int modulus_length_bytes =
PK11_GetPrivateModulusLen(wrapping_key->key());
if (modulus_length_bytes <= 0)
return Status::ErrorUnexpected();
if (wrapped_key_data.byte_length() >
static_cast<unsigned int>(modulus_length_bytes))
return Status::ErrorDataTooLarge();
CK_MECHANISM_TYPE mechanism;
CK_FLAGS flags;
Status status =
WebCryptoAlgorithmToNssMechFlags(algorithm, &mechanism, &flags);
if (status.IsError())
return status;
SECItem wrapped_key_item = MakeSECItemForBuffer(wrapped_key_data);
crypto::ScopedPK11SymKey unwrapped_key(
PK11_PubUnwrapSymKeyWithFlagsPerm(wrapping_key->key(),
&wrapped_key_item,
mechanism,
CKA_DECRYPT,
0,
flags,
false));
if (!unwrapped_key)
return Status::Error();
const unsigned int key_length = PK11_GetKeyLength(unwrapped_key.get());
blink::WebCryptoKeyAlgorithm key_algorithm;
if (!CreateSecretKeyAlgorithm(algorithm, key_length, &key_algorithm))
return Status::ErrorUnexpected();
*key = blink::WebCryptoKey::create(new SymKey(unwrapped_key.Pass()),
blink::WebCryptoKeyTypeSecret,
extractable,
key_algorithm,
usage_mask);
return Status::Success();
}
}
}
}