Lines Matching defs:const

19   static void GetSSLCiphers(const v8::FunctionCallbackInfo<v8::Value>& args);
20 static void GetCiphers(const v8::FunctionCallbackInfo<v8::Value>& args);
25 void MemoryInfo(MemoryTracker* tracker) const override;
44 static const unsigned kNoAuthTagLength = static_cast<unsigned>(-1);
46 void CommonInit(const char* cipher_type,
47 const EVP_CIPHER* cipher,
48 const unsigned char* key,
50 const unsigned char* iv,
53 void Init(const char* cipher_type,
54 const ArrayBufferOrViewContents<unsigned char>& key_buf,
56 void InitIv(const char* cipher_type,
57 const ByteSource& key_buf,
58 const ArrayBufferOrViewContents<unsigned char>& iv_buf,
60 bool InitAuthenticated(const char* cipher_type, int iv_len,
63 UpdateResult Update(const char* data, size_t len,
68 bool IsAuthenticatedMode() const;
70 const ArrayBufferOrViewContents<unsigned char>& data,
74 static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
75 static void Init(const v8::FunctionCallbackInfo<v8::Value>& args);
76 static void InitIv(const v8::FunctionCallbackInfo<v8::Value>& args);
77 static void Update(const v8::FunctionCallbackInfo<v8::Value>& args);
78 static void Final(const v8::FunctionCallbackInfo<v8::Value>& args);
79 static void SetAutoPadding(const v8::FunctionCallbackInfo<v8::Value>& args);
81 static void GetAuthTag(const v8::FunctionCallbackInfo<v8::Value>& args);
82 static void SetAuthTag(const v8::FunctionCallbackInfo<v8::Value>& args);
83 static void SetAAD(const v8::FunctionCallbackInfo<v8::Value>& args);
89 const CipherKind kind_;
102 const unsigned char* in, size_t inlen);
113 const ManagedEVPPKey& pkey,
115 const EVP_MD* digest,
116 const ArrayBufferOrViewContents<unsigned char>& oaep_label,
117 const ArrayBufferOrViewContents<unsigned char>& data,
123 static void Cipher(const v8::FunctionCallbackInfo<v8::Value>& args);
148 static void New(const v8::FunctionCallbackInfo<v8::Value>& args) {
204 const ArrayBufferOrViewContents<char>& data,
218 std::shared_ptr<KeyObjectData> key() const { return key_; }
220 WebCryptoCipherMode cipher_mode() const { return cipher_mode_; }
223 const WebCryptoCipherStatus status =
273 void MemoryInfo(MemoryTracker* tracker) const override {