blob: 935f4bbdad42cbbda0615fc960d3aa0942d66d4b [file] [log] [blame]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "faced/session.h"
namespace faced {
uint64_t GenerateSessionId(absl::BitGen& bitgen) {
return absl::Uniform<uint64_t>(bitgen);
}
} // namespace faced