Skip to content

Commit

Permalink
Merge branch 'dev-omemo'
Browse files Browse the repository at this point in the history
  • Loading branch information
agude committed Feb 3, 2025
2 parents db8f1a0 + aa8eb2e commit 4ed901d
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 0 deletions.
8 changes: 8 additions & 0 deletions _sass/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,11 @@ h1:hover .anchor-link-img, h2:hover .anchor-link-img, h3:hover .anchor-link-img,
break-inside: avoid-column;
}
}

// OMEMO QR Code Images
.omemo-qr-code {
width: 200px;
height: auto;
max-width: 100%;
border: None;
}
Binary file added files/omemo/android-omemo-qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added files/omemo/linux-omemo-qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added files/omemo/windows-omemo-qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions omemo-fingerprints.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
layout: default
title: OMEMO Fingerprints
description: >
Alex Gude's OMEMO fingerprints and QR codes for secure messaging.
sidebar_include: false
date: 2025-02-02
omemo_fingerprints:
- device_name: Android Conversations
fingerprint: 7d417976 4886dae0 f784fe0f a40cf355 8ed5a040 2dc08dfd ff75a232 a29d9848
qr_code: /files/omemo/android-omemo-qr.png
- device_name: Linux Desktop Gajim
fingerprint: 3937481a 47924f9f 70bebdc8 d7668596 c5ab7de1 e1e75d18 7cc10999 f57f895c
qr_code: /files/omemo/linux-omemo-qr.png
- device_name: MacOS Laptop BeagleIM
fingerprint: fdac370e 471001d9 73d7cb48 5b742a32 2a693ab4 bd41f076 2a905b3e a813cf4b
qr_code: null
- device_name: Windows Desktop Gajim
fingerprint: d80474d0 fbe7cf2e 25e87b1b 1e2cf7b5 6fc9be8d eb3bd07a 91b8b92d e5cc4536
qr_code: /files/omemo/windows-omemo-qr.png
---

# {{ page.title }}

Below are my OMEMO fingerprints and their corresponding QR codes (where
available) for secure messaging as of <time datetime="{{ page.date |
date_to_xmlschema }}">{{ page.date | date: "%B %-d, %Y" }}</time>. These
fingerprints are used to verify the identity of my devices in end-to-end
encrypted communication.

{% for device in page.omemo_fingerprints %}
## {{ device.device_name }}

**Fingerprint:** `{{ device.fingerprint }}`

{% if device.qr_code %}
**QR Code:** ![{{ device.device_name }} OMEMO QR Code]({{ device.qr_code }}){: .omemo-qr-code }
{% else %}
**QR Code:** *No QR code available for this device.*
{% endif %}

{% endfor %}

0 comments on commit 4ed901d

Please sign in to comment.