mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
66 lines
2.3 KiB
C++
66 lines
2.3 KiB
C++
// Copyright 2020 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef THIRD_PARTY_NEARBY_INTERNAL_CRYPTO_EC_SIGNATURE_CREATOR_H_
|
|
#define THIRD_PARTY_NEARBY_INTERNAL_CRYPTO_EC_SIGNATURE_CREATOR_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "absl/types/span.h"
|
|
#include "internal/crypto/crypto_export.h"
|
|
|
|
namespace crypto {
|
|
|
|
class ECPrivateKey;
|
|
class ECSignatureCreator;
|
|
|
|
// Signs data using a bare private key (as opposed to a full certificate).
|
|
// We need this class because SignatureCreator is hardcoded to use
|
|
// RSAPrivateKey.
|
|
class CRYPTO_EXPORT ECSignatureCreator {
|
|
public:
|
|
virtual ~ECSignatureCreator() {}
|
|
|
|
// Create an instance. The caller must ensure that the provided PrivateKey
|
|
// instance outlives the created ECSignatureCreator.
|
|
// TODO(rch): This is currently hard coded to use SHA256. Ideally, we should
|
|
// pass in the hash algorithm identifier.
|
|
static std::unique_ptr<ECSignatureCreator> Create(ECPrivateKey* key);
|
|
|
|
// Signs |data| and writes the results into |signature| as a DER encoded
|
|
// ECDSA-Sig-Value from RFC 3279.
|
|
//
|
|
// ECDSA-Sig-Value ::= SEQUENCE {
|
|
// r INTEGER,
|
|
// s INTEGER }
|
|
virtual bool Sign(absl::Span<const uint8_t> data,
|
|
std::vector<uint8_t>* signature) = 0;
|
|
|
|
// DecodeSignature converts from a DER encoded ECDSA-Sig-Value (as produced
|
|
// by Sign) to a `raw' ECDSA signature which consists of a pair of
|
|
// big-endian, zero-padded, 256-bit integers, r and s. On success it returns
|
|
// true and puts the raw signature into |out_raw_sig|.
|
|
// (Only P-256 signatures are supported.)
|
|
virtual bool DecodeSignature(const std::vector<uint8_t>& signature,
|
|
std::vector<uint8_t>* out_raw_sig) = 0;
|
|
};
|
|
|
|
} // namespace crypto
|
|
|
|
#endif // THIRD_PARTY_NEARBY_INTERNAL_CRYPTO_EC_SIGNATURE_CREATOR_H_
|