aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet/cryptoApi.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-03-01 19:46:20 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-03-01 19:56:41 +0100
commit1cca800254bca4b34e911f252223ef0456dd95d7 (patch)
tree23e55fdbb0d07146b7425a4a25664fdc17bce76f /lib/wallet/cryptoApi.ts
parent5c600904f5d30773f5700f1df934d5235558b2eb (diff)
downloadwallet-core-1cca800254bca4b34e911f252223ef0456dd95d7.tar.xz
add author
Diffstat (limited to 'lib/wallet/cryptoApi.ts')
-rw-r--r--lib/wallet/cryptoApi.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/wallet/cryptoApi.ts b/lib/wallet/cryptoApi.ts
index 300b928db..3cbed89c3 100644
--- a/lib/wallet/cryptoApi.ts
+++ b/lib/wallet/cryptoApi.ts
@@ -15,6 +15,12 @@
*/
+/**
+ * API to access the Taler crypto worker thread.
+ * @author Florian Dold
+ */
+
+
import {PreCoin} from "./types";
import {Reserve} from "./types";
import {Denomination} from "./types";
@@ -90,4 +96,4 @@ export class CryptoApi {
rsaUnblind(sig: string, bk: string, pk: string): Promise<string> {
return this.doRpc("rsaUnblind", sig, bk, pk);
}
-} \ No newline at end of file
+}