#ifndef CRYPTO_TEST_SUPPORT_H_
#define CRYPTO_TEST_SUPPORT_H_
#include "crypto/keypair.h"
namespace crypto::test {
using crypto::keypair::PrivateKey;
using crypto::keypair::PublicKey;
PrivateKey FixedRsa2048PrivateKeyForTesting();
PublicKey FixedRsa2048PublicKeyForTesting();
const base::span<const uint8_t> FixedRsa2048PublicKeyAsCoseForTesting();
PrivateKey FixedRsa4096PrivateKeyForTesting();
PublicKey FixedRsa4096PublicKeyForTesting();
PrivateKey FixedEcP256PrivateKeyForTesting();
PublicKey FixedEcP256PublicKeyForTesting();
const base::span<const uint8_t> FixedEcP256PublicKeyAsCoseForTesting();
}
#endif