aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/crypto/private_key.cpp
blob: c75330485e331df4317de21ef9f666e4d0722a4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "private_key.h"
#include "openssl_crypto_impl.h"

namespace vespalib::crypto {

std::shared_ptr<PrivateKey> PrivateKey::generate_p256_ec_key() {
    return openssl_impl::PrivateKeyImpl::generate_openssl_p256_ec_key();
}

}