implement getter for public keys
parent
ecef970250
commit
22fbc7e5d8
|
@ -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;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue