blob: a8240243943b2ab9339ae8021612efcee60990f2 [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 "base/logging.h"
#include "net/der/tag.h"
namespace net {
namespace der {
Tag ContextSpecificConstructed(uint8_t class_number) {
DCHECK_EQ(class_number, class_number & kTagNumberMask);
return (class_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