Use UUID-only sender certificate when applicable

This commit is contained in:
Evan Hahn 2021-04-05 15:38:36 -05:00 committed by Josh Perez
parent cfd77bf968
commit 18ccda83ba
3 changed files with 70 additions and 25 deletions

View file

@ -63,11 +63,11 @@ function stringToArrayBuffer(str: string): ArrayBuffer {
export type SendMetadataType = {
[identifier: string]: {
accessKey: string;
senderCertificate?: SerializedCertificateType;
};
};
export type SendOptionsType = {
senderCertificate?: SerializedCertificateType;
sendMetadata?: SendMetadataType;
online?: boolean;
};