chromium/components/webcrypto/algorithms/rsa_ssa.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <stdint.h>

#include <memory>

#include "components/webcrypto/algorithms/rsa.h"
#include "components/webcrypto/algorithms/rsa_sign.h"
#include "components/webcrypto/status.h"

namespace webcrypto {

namespace {

class RsaSsaImplementation : public RsaHashedAlgorithm {};

}  // namespace

std::unique_ptr<AlgorithmImplementation> CreateRsaSsaImplementation() {}

}  // namespace webcrypto