summaryrefslogtreecommitdiff
path: root/chromium/net/ntlm/ntlm_constants.cc
blob: 95a1e8fc0fe8da76ca0a15f47433124f2e32e6c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/ntlm/ntlm_constants.h"

namespace net::ntlm {

AvPair::AvPair() = default;

AvPair::AvPair(TargetInfoAvId avid, uint16_t avlen)
    : avid(avid), avlen(avlen) {}

AvPair::AvPair(TargetInfoAvId avid, std::vector<uint8_t> buffer)
    : buffer(std::move(buffer)), avid(avid) {
  avlen = this->buffer.size();
}

AvPair::AvPair(const AvPair& other) = default;

AvPair::AvPair(AvPair&& other) = default;

AvPair::~AvPair() = default;

AvPair& AvPair::operator=(const AvPair& other) = default;

AvPair& AvPair::operator=(AvPair&& other) = default;

}  // namespace net::ntlm