Add session description and speaking listeners

This commit is contained in:
Amish Shah
2016-10-02 15:12:43 +01:00
parent e201e9080f
commit ed8b79aa46
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class SecretKey {
constructor(key) {
this.key = new Uint8Array(new ArrayBuffer(key.length));
for (const index in key) {
this.key[index] = key[index];
}
}
}
module.exports = SecretKey;