blob: 4d45e2fc6c41c13a20f713af83605a09ffc2b8b9 [file] [log] [blame]
import {BinaryKeysetReader} from '../internal/binary_keyset_reader';
import {KeysetHandle, readNoSecret} from '../internal/keyset_handle';
export function deserializeNoSecretKeyset(
serializedKeyset: Uint8Array): KeysetHandle {
return readNoSecret(BinaryKeysetReader.withUint8Array(serializedKeyset));
}