| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- * Copyright 2021 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
- *
- * http://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.
- */
- #import <Foundation/Foundation.h>
- @class FBLPromise<ValueType>;
- NS_ASSUME_NONNULL_BEGIN
- /// The protocol defines methods to store App Attest key IDs per Firebase app.
- @protocol FIRAppAttestKeyIDStorageProtocol <NSObject>
- /** Manages storage of an app attest key ID.
- * @param keyID The app attest key ID to store or `nil` to remove the existing app attest key ID.
- * @return A promise that is resolved with a stored app attest key ID or `nil` if the existing app
- * attest key ID has been removed.
- */
- - (FBLPromise<NSString *> *)setAppAttestKeyID:(nullable NSString *)keyID;
- /** Reads a stored app attest key ID.
- * @return A promise that is resolved with a stored app attest key ID or `nil` if there is not a
- * stored app attest key ID. The promise is rejected with an error in the case of a missing app
- * attest key ID .
- */
- - (FBLPromise<NSString *> *)getAppAttestKeyID;
- @end
- /// The App Attest key ID storage implementation.
- /// This class is designed for use by `FIRAppAttestProvider`. It's operations are managed by
- /// `FIRAppAttestProvider`'s internal serial queue. It is not considered thread safe and should not
- /// be used by other classes at this time.
- @interface FIRAppAttestKeyIDStorage : NSObject <FIRAppAttestKeyIDStorageProtocol>
- - (instancetype)init NS_UNAVAILABLE;
- /** Default convenience initializer.
- * @param appName A Firebase App name (`FirebaseApp.name`). The app name will be used as a part of
- * the key to store the token for the storage instance.
- * @param appID A Firebase App identifier (`FirebaseOptions.googleAppID`). The app ID will be used
- * as a part of the key to store the token for the storage instance.
- */
- - (instancetype)initWithAppName:(NSString *)appName appID:(NSString *)appID;
- @end
- NS_ASSUME_NONNULL_END
|