implement getter for public keys

pull/1/head
ansuz 2017-07-10 09:21:27 +02:00
parent ecef970250
commit 22fbc7e5d8
1 changed files with 9 additions and 0 deletions

View File

@ -328,6 +328,15 @@ define([
typeof(proxy.curvePublic) === 'string';
};
common.getPublicKeys = function (proxy) {
proxy = proxy || common.getProxy();
if (!proxy || !proxy.edPublic || !proxy.curvePublic) { return; }
return {
curve: proxy.curvePublic,
ed: proxy.edPublic,
};
};
common.isArray = $.isArray;
/*