Home | History | Annotate | Download | only in test
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 // Utility functions for crypto testing.
      6 
      7 #include "media/cast/cast_config.h"
      8 
      9 namespace media {
     10 namespace cast {
     11 
     12 // Convert to a binary string from a base 16 string.
     13 std::string ConvertFromBase16String(const std::string base_16);
     14 
     15 }  // namespace cast
     16 }  // namespace media
     17 
     18