chromium/components/webcrypto/algorithms/ed25519.h

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

#ifndef COMPONENTS_WEBCRYPTO_ALGORITHMS_ED25519_H_
#define COMPONENTS_WEBCRYPTO_ALGORITHMS_ED25519_H_

#include "components/webcrypto/algorithm_implementation.h"

namespace webcrypto {

// This class implements Ed25519, a signature scheme specified in RFC 8032.
// https://www.rfc-editor.org/rfc/rfc8032
class Ed25519Implementation : public AlgorithmImplementation {};

}  // namespace webcrypto

#endif  // COMPONENTS_WEBCRYPTO_ALGORITHMS_ED25519_H_