summaryrefslogtreecommitdiffstats
path: root/key.h
diff options
context:
space:
mode:
Diffstat (limited to 'key.h')
-rw-r--r--key.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/key.h b/key.h
index 2c972be..f7d2a1c 100644
--- a/key.h
+++ b/key.h
@@ -46,9 +46,6 @@ class KeyFactory {
keymaster_key_format_t key_format, const uint8_t* key_data,
size_t key_data_length, keymaster_error_t* error) = 0;
virtual Key* LoadKey(const UnencryptedKeyBlob& blob, keymaster_error_t* error) = 0;
- virtual Key* RescopeKey(const UnencryptedKeyBlob& blob,
- const AuthorizationSet& new_authorizations,
- keymaster_error_t* error) = 0;
// Informational methods.
virtual const keymaster_key_format_t* SupportedImportFormats(size_t* format_count) = 0;
@@ -78,7 +75,6 @@ class Key {
size_t* size) const = 0;
const AuthorizationSet& authorizations() const { return authorizations_; }
- bool rescopable() const;
protected:
Key(const KeyBlob& blob);