blob: a2b00747e3ee7d90554bb7fa5d50da58e9d92434 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/der/tag.h"
#include "base/logging.h"
namespace net {
namespace der {
Tag ContextSpecificConstructed(uint8_t tag_number) {
DCHECK_EQ(tag_number, tag_number & kTagNumberMask);
return (tag_number & kTagNumberMask) | kTagConstructed | kTagContextSpecific;
}
Tag ContextSpecificPrimitive(uint8_t base) {
DCHECK_EQ(base, base & kTagNumberMask);
return (base & kTagNumberMask) | kTagPrimitive | kTagContextSpecific;
}
bool IsConstructed(Tag tag) {
return (tag & kTagConstructionMask) == kTagConstructed;
}
} // namespace der
} // namespace net