mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
23 lines
638 B
Markdown
23 lines
638 B
Markdown
---
|
|
title: Do you have a GPG key?
|
|
category: other
|
|
---
|
|
|
|
Reporting a security issue? [Click here](/faq/security).
|
|
|
|
Our GPG is on [Keybase](https://keybase.io/lbry/key.asc) and is reproduced below.
|
|
|
|
<pre><code id="keybase-key"></code></pre>
|
|
<script type="text/javascript">
|
|
try {
|
|
var request = new XMLHttpRequest();
|
|
request.open('GET', 'https://keybase.io/lbry/key.asc', true);
|
|
request.onload = function() {
|
|
if (request.status >= 200 && request.status < 400) {
|
|
el = document.getElementById('keybase-key');
|
|
el.textContent = request.responseText;
|
|
}
|
|
};
|
|
request.send();
|
|
} catch(e) {}
|
|
</script>
|