Lines Matching refs:CipherBase

198 void CipherBase::GetSSLCiphers(const FunctionCallbackInfo<Value>& args) {
241 void CipherBase::GetCiphers(const FunctionCallbackInfo<Value>& args) {
259 CipherBase::CipherBase(Environment* env,
271 void CipherBase::MemoryInfo(MemoryTracker* tracker) const {
275 void CipherBase::Initialize(Environment* env, Local<Object> target) {
282 CipherBase::kInternalFieldCount);
293 SetConstructorFunction(context, target, "CipherBase", t);
329 void CipherBase::RegisterExternalReferences(
361 void CipherBase::New(const FunctionCallbackInfo<Value>& args) {
364 new CipherBase(env, args.This(), args[0]->IsTrue() ? kCipher : kDecipher);
367 void CipherBase::CommonInit(const char* cipher_type,
405 void CipherBase::Init(const char* cipher_type,
451 void CipherBase::Init(const FunctionCallbackInfo<Value>& args) {
452 CipherBase* cipher;
476 void CipherBase::InitIv(const char* cipher_type,
523 void CipherBase::InitIv(const FunctionCallbackInfo<Value>& args) {
524 CipherBase* cipher;
559 bool CipherBase::InitAuthenticated(
639 bool CipherBase::CheckCCMMessageLength(int message_len) {
651 bool CipherBase::IsAuthenticatedMode() const {
657 void CipherBase::GetAuthTag(const FunctionCallbackInfo<Value>& args) {
659 CipherBase* cipher;
674 void CipherBase::SetAuthTag(const FunctionCallbackInfo<Value>& args) {
675 CipherBase* cipher;
722 bool CipherBase::MaybePassAuthTagToOpenSSL() {
735 bool CipherBase::SetAAD(
774 void CipherBase::SetAAD(const FunctionCallbackInfo<Value>& args) {
775 CipherBase* cipher;
789 CipherBase::UpdateResult CipherBase::Update(
849 void CipherBase::Update(const FunctionCallbackInfo<Value>& args) {
850 Decode<CipherBase>(args, [](CipherBase* cipher,
875 bool CipherBase::SetAutoPadding(bool auto_padding) {
882 void CipherBase::SetAutoPadding(const FunctionCallbackInfo<Value>& args) {
883 CipherBase* cipher;
890 bool CipherBase::Final(std::unique_ptr<BackingStore>* out) {
952 void CipherBase::Final(const FunctionCallbackInfo<Value>& args) {
955 CipherBase* cipher;