lper

Results 3 issues of lper

function getLastChild(elem) { if (elem.lastChild.children && elem.lastChild.children.length > 0) { return getLastChild(Array.prototype.slice.call(elem.children).pop()); } else if (!elem.lastChild || !elem.lastChild.nodeValue || elem.lastChild.nodeValue == '' || elem.lastChild.nodeValue == opt.truncationChar) { elem.lastChild.parentNode.removeChild(elem.lastChild); return getLastChild(element);...

How does it work for RSASSA-PSS-SIGN or RSASSA-PSS-VERIFY ? Can you give me some examples? http://tools.ietf.org/html/rfc3447#section-8.1.1 http://tools.ietf.org/html/rfc3447#section-8.1.2

check
GTD