Returns PGP key for encrypting password.

Parameters 

 

Name TypeDescription

uuid

required

strig

contact uuid

cb

optional

function

callback function



Example

this.requestLoginKey = function (uuid, cb){
  return _request({
    method: 'GET',
    url: '/key_request/login/'+ uuid,
    callback: cb
  });
};