chromium/components/webcrypto/algorithms/rsa_pss.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"
#include "third_party/blink/public/platform/web_crypto_algorithm_params.h"

namespace webcrypto {

namespace {

class RsaPssImplementation : public RsaHashedAlgorithm {};

}  // namespace

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

}  // namespace webcrypto