aboutsummaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2020-08-31 10:50:33 -0400
committerHubert Chathi <hubert@uhoreg.ca>2020-08-31 10:50:33 -0400
commit89050dc0b68f0d5f1bf9f9f386f7c2f4ac043f4f (patch)
tree61924e97eca085bbe944e837652ec4250198c2a7 /javascript
parenta0284c2ba36ac8433ea752e93b4a0a331a3f0c0b (diff)
allow some things to be Uint8Array, and fix some TypeScript declarations
Diffstat (limited to 'javascript')
-rw-r--r--javascript/index.d.ts16
-rw-r--r--javascript/olm_post.js2
2 files changed, 9 insertions, 9 deletions
diff --git a/javascript/index.d.ts b/javascript/index.d.ts
index a0107ac..d11ce23 100644
--- a/javascript/index.d.ts
+++ b/javascript/index.d.ts
@@ -21,7 +21,7 @@ declare class Account {
free();
create();
identity_keys(): string;
- sign(message: string): string;
+ sign(message: string | Uint8Array): string;
one_time_keys(): string;
mark_keys_as_published();
max_number_of_one_time_keys(): number;
@@ -34,8 +34,8 @@ declare class Account {
declare class Session {
constructor();
free(): void;
- pickle(key: string): string;
- unpickle(key: string, pickle: string);
+ pickle(key: string | Uint8Array): string;
+ unpickle(key: string | Uint8Array, pickle: string);
create_outbound(
account: Account, their_identity_key: string, their_one_time_key: string,
): void;
@@ -55,8 +55,8 @@ declare class Session {
declare class Utility {
constructor();
free(): void;
- sha256(input: string): string;
- ed25519verify(key: string, message: string, signature: string): void;
+ sha256(input: string | Uint8Array): string;
+ ed25519_verify(key: string, message: string | Uint8Array, signature: string): void;
}
declare class InboundGroupSession {
@@ -97,8 +97,8 @@ declare class PkDecryption {
init_with_private_key(key: Uint8Array): string;
generate_key(): string;
get_private_key(): Uint8Array;
- pickle(key: string): string;
- unpickle(key: string, pickle: string): string;
+ pickle(key: string | Uint8Array): string;
+ unpickle(key: string | Uint8Array, pickle: string): string;
decrypt(ephemeral_key: string, mac: string, ciphertext: string): string;
}
@@ -120,6 +120,6 @@ declare class SAS {
calculate_mac_long_kdf(input: string, info: string): string;
}
-export function init(): Promise<void>;
+export function init(opts?: object): Promise<void>;
export function get_library_version(): [number, number, number];
diff --git a/javascript/olm_post.js b/javascript/olm_post.js
index e204f30..439041a 100644
--- a/javascript/olm_post.js
+++ b/javascript/olm_post.js
@@ -11,7 +11,7 @@ function stack(size_or_array) {
}
function array_from_string(string) {
- return intArrayFromString(string, true);
+ return string instanceof Uint8Array ? string : intArrayFromString(string, true);
}
function random_stack(size) {