| OLD | NEW |
| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 public: | 47 public: |
| 48 static CryptoKey* create(const WebCryptoKey& key) | 48 static CryptoKey* create(const WebCryptoKey& key) |
| 49 { | 49 { |
| 50 return new CryptoKey(key); | 50 return new CryptoKey(key); |
| 51 } | 51 } |
| 52 | 52 |
| 53 ~CryptoKey(); | 53 ~CryptoKey(); |
| 54 | 54 |
| 55 String type() const; | 55 String type() const; |
| 56 bool extractable() const; | 56 bool extractable() const; |
| 57 ScriptValue algorithm(ScriptState*); |
| 57 Vector<String> usages() const; | 58 Vector<String> usages() const; |
| 58 | 59 |
| 59 const WebCryptoKey& key() const { return m_key; } | 60 const WebCryptoKey& key() const { return m_key; } |
| 60 | 61 |
| 61 // If the key cannot be used with the indicated algorithm, returns false | 62 // If the key cannot be used with the indicated algorithm, returns false |
| 62 // and completes the CryptoResult with an error. | 63 // and completes the CryptoResult with an error. |
| 63 bool canBeUsedForAlgorithm(const WebCryptoAlgorithm&, WebCryptoKeyUsage, Cry
ptoResult*) const; | 64 bool canBeUsedForAlgorithm(const WebCryptoAlgorithm&, WebCryptoKeyUsage, Cry
ptoResult*) const; |
| 64 | 65 |
| 65 // On failure, these return false and complete the CryptoResult with an erro
r. | 66 // On failure, these return false and complete the CryptoResult with an erro
r. |
| 66 static bool parseFormat(const String&, WebCryptoKeyFormat&, CryptoResult*); | 67 static bool parseFormat(const String&, WebCryptoKeyFormat&, CryptoResult*); |
| 67 static bool parseUsageMask(const Vector<String>&, WebCryptoKeyUsageMask&, Cr
yptoResult*); | 68 static bool parseUsageMask(const Vector<String>&, WebCryptoKeyUsageMask&, Cr
yptoResult*); |
| 68 | 69 |
| 69 DEFINE_INLINE_TRACE() { } | 70 DEFINE_INLINE_TRACE() { } |
| 70 | 71 |
| 71 protected: | 72 protected: |
| 72 explicit CryptoKey(const WebCryptoKey&); | 73 explicit CryptoKey(const WebCryptoKey&); |
| 73 | 74 |
| 74 const WebCryptoKey m_key; | 75 const WebCryptoKey m_key; |
| 75 }; | 76 }; |
| 76 | 77 |
| 77 } // namespace blink | 78 } // namespace blink |
| 78 | 79 |
| 79 #endif // CryptoKey_h | 80 #endif // CryptoKey_h |
| OLD | NEW |