| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // | 90 // |
| 91 // The result should be set exactly once, from the same thread which | 91 // The result should be set exactly once, from the same thread which |
| 92 // initiated the operation. | 92 // initiated the operation. |
| 93 virtual void encrypt(const WebCryptoAlgorithm&, const WebCryptoKey&, const u
nsigned char* data, size_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACH
ED(); } | 93 virtual void encrypt(const WebCryptoAlgorithm&, const WebCryptoKey&, const u
nsigned char* data, size_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACH
ED(); } |
| 94 virtual void decrypt(const WebCryptoAlgorithm&, const WebCryptoKey&, const u
nsigned char* data, size_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACH
ED(); } | 94 virtual void decrypt(const WebCryptoAlgorithm&, const WebCryptoKey&, const u
nsigned char* data, size_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACH
ED(); } |
| 95 virtual void sign(const WebCryptoAlgorithm&, const WebCryptoKey&, const unsi
gned char* data, size_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(
); } | 95 virtual void sign(const WebCryptoAlgorithm&, const WebCryptoKey&, const unsi
gned char* data, size_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(
); } |
| 96 virtual void verifySignature(const WebCryptoAlgorithm&, const WebCryptoKey&,
const unsigned char* signature, size_t signature_size, const unsigned char* dat
a, size_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(); } | 96 virtual void verifySignature(const WebCryptoAlgorithm&, const WebCryptoKey&,
const unsigned char* signature, size_t signature_size, const unsigned char* dat
a, size_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(); } |
| 97 virtual void digest(const WebCryptoAlgorithm&, const unsigned char* data, si
ze_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(); } | 97 virtual void digest(const WebCryptoAlgorithm&, const unsigned char* data, si
ze_t data_size, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(); } |
| 98 virtual void generateKey(const WebCryptoAlgorithm&, bool extractable, WebCry
ptoKeyUsageMask, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(); } | 98 virtual void generateKey(const WebCryptoAlgorithm&, bool extractable, WebCry
ptoKeyUsageMask, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(); } |
| 99 virtual void importKey(WebCryptoKeyFormat, const unsigned char* keyData, siz
e_t keyDataSize, const WebCryptoAlgorithm&, bool extractable, WebCryptoKeyUsageM
ask, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(); } | 99 virtual void importKey(WebCryptoKeyFormat, const unsigned char* keyData, siz
e_t keyDataSize, const WebCryptoAlgorithm&, bool extractable, WebCryptoKeyUsageM
ask, WebCryptoResult) { WEBKIT_ASSERT_NOT_REACHED(); } |
| 100 virtual void exportKey(WebCryptoKeyFormat, const WebCryptoKey&, WebCryptoRes
ult) { WEBKIT_ASSERT_NOT_REACHED(); } |
| 100 | 101 |
| 101 protected: | 102 protected: |
| 102 virtual ~WebCrypto() { } | 103 virtual ~WebCrypto() { } |
| 103 }; | 104 }; |
| 104 | 105 |
| 105 } // namespace WebKit | 106 } // namespace WebKit |
| 106 | 107 |
| 107 #endif | 108 #endif |
| OLD | NEW |