diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-03-01 19:49:09 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-03-01 19:49:09 +0100 |
commit | 9f1f2ce3d10a8f2468368ef79d38554f965aa6a9 (patch) | |
tree | d508f1c0644ab10b0d31722642868168f7dfce12 /lib/wallet/cryptoApi.ts | |
parent | 51e5c43506801e60d8c90ba419a27583d8a1ce60 (diff) |
add author
Diffstat (limited to 'lib/wallet/cryptoApi.ts')
-rw-r--r-- | lib/wallet/cryptoApi.ts | 8 |
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 +} |