summaryrefslogtreecommitdiff
path: root/Source/WebCore/crypto/CryptoKeyUsage.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/crypto/CryptoKeyUsage.h')
-rw-r--r--Source/WebCore/crypto/CryptoKeyUsage.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/Source/WebCore/crypto/CryptoKeyUsage.h b/Source/WebCore/crypto/CryptoKeyUsage.h
index 6bbebf8d0..9da11b47a 100644
--- a/Source/WebCore/crypto/CryptoKeyUsage.h
+++ b/Source/WebCore/crypto/CryptoKeyUsage.h
@@ -23,8 +23,7 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef CryptoKeyUsage_h
-#define CryptoKeyUsage_h
+#pragma once
#if ENABLE(SUBTLE_CRYPTO)
@@ -41,9 +40,20 @@ enum {
CryptoKeyUsageUnwrapKey = 1 << 7
};
-typedef int CryptoKeyUsage;
+typedef int CryptoKeyUsageBitmap;
-}
+// Only for binding purpose.
+enum class CryptoKeyUsage {
+ Encrypt,
+ Decrypt,
+ Sign,
+ Verify,
+ DeriveKey,
+ DeriveBits,
+ WrapKey,
+ UnwrapKey
+};
+
+} // namespace WebCore
#endif // ENABLE(SUBTLE_CRYPTO)
-#endif // CryptoKeyUsage_h