Add EMMG to carry fingerprinting and service blocking info
This commit is contained in:
@@ -41,14 +41,6 @@ class RsaPrivateKey {
|
||||
virtual bool Decrypt(const std::string& encrypted_message,
|
||||
std::string* decrypted_message) const;
|
||||
|
||||
// Generate RSSASSA-PSS signature. Caller retains ownership of all parameters.
|
||||
// Returns true if successful, false otherwise.
|
||||
// TODO(b/155438325): remove this function after the below function is fully
|
||||
// propagated.
|
||||
ABSL_DEPRECATED(
|
||||
"Use the below function with |hash_algorithm| argument instead.")
|
||||
virtual bool GenerateSignature(const std::string& message,
|
||||
std::string* signature) const;
|
||||
|
||||
// Generate RSSASSA-PSS signature. Caller retains ownership of all parameters.
|
||||
// |hash_algorithm| indicates the hash algorithm used. Returns true if
|
||||
@@ -109,14 +101,6 @@ class RsaPublicKey {
|
||||
virtual bool Encrypt(const std::string& clear_message,
|
||||
std::string* encrypted_message) const;
|
||||
|
||||
// Verify RSSASSA-PSS signature. Caller retains ownership of all parameters.
|
||||
// Returns true if validation succeeds, false otherwise.
|
||||
// TODO(b/155438325): remove this function after the below function is fully
|
||||
// propagated.
|
||||
ABSL_DEPRECATED(
|
||||
"Use the below function with |hash_algorithm| argument instead.")
|
||||
virtual bool VerifySignature(const std::string& message,
|
||||
const std::string& signature) const;
|
||||
|
||||
// Verify RSSASSA-PSS signature. Caller retains ownership of all parameters.
|
||||
// |hash_algorithm| indicates the hash algorithm used. Returns true if
|
||||
|
||||
Reference in New Issue
Block a user