Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marchof/three4j
Threema Gateway Client for Java
https://github.com/marchof/three4j
cryptography encryption end-to-end-encryption java messaging privacy threema threema-gateway
Last synced: 18 days ago
JSON representation
Threema Gateway Client for Java
- Host: GitHub
- URL: https://github.com/marchof/three4j
- Owner: marchof
- License: mit
- Created: 2021-07-21T17:33:14.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-03T20:15:59.000Z (6 months ago)
- Last Synced: 2024-06-03T23:08:52.072Z (6 months ago)
- Topics: cryptography, encryption, end-to-end-encryption, java, messaging, privacy, threema, threema-gateway
- Language: Java
- Homepage: https://github.com/marchof/three4j
- Size: 101 KB
- Stars: 9
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Three4J - Threema Gateway Client for Java
=========================================A Java client library for the [Threema Gateway](https://gateway.threema.ch/)
which supports exchanging end-to-end encrypted messages including images and
arbitrary files. The primary purpose of this implementation is to provide a
small Maven artifact which can be easily integrated in any Java applications.
The implementation is based on the [Java 11 HTTP client](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/package-summary.html)
and [Salty Coffee](https://github.com/NeilMadden/salty-coffee) for NaCl encryption.The following resources have been used to implement this API:
* [Threema Message API](https://gateway.threema.ch/en/developer/api)
* [Threema E2E Message Formats](https://gateway.threema.ch/en/developer/e2e)
* [Cryptography Whitepaper](https://threema.ch/press-files/2_documentation/cryptography_whitepaper.pdf)
* [Threema Encryption Validation](https://threema.ch/validation/)The API JavaDoc is available [online](https://javadoc.io/doc/com.mountainminds/three4j/).
## Maven Artifacts
The latest Three4J version can be obtained with the following Maven dependency:
```xml
com.mountainminds
three4j
1.4.0```
Latest builds from `master` are available in this snapshot repository:
https://s01.oss.sonatype.org/content/repositories/snapshots/## Prerequisites
Three4J requires Java 11 or later.
To use this library you need a [Threema Gateway](https://gateway.threema.ch/)
account with at least one Threema ID and the corresponding key pair. Three4J
comes with a main class to generate a new key pair:```
$ java com.mountainminds.three4j.KeyGeneratorPLEASE KEEP THE GENERATED KEYS CONFIDENTIAL IF YOU USE THEM WITH A THREEMA ID
IF YOU LOOSE THE KEY OF A THREEMA ID IT CANNOT BE USED ANY MORE FOR MESSAGINGpublic key: e25f5e489c458a9eb9d0c07ae44fba34a91b4bd20093e854400998abxxxxxxxx
private key: 93f9873676db87ed2e3ec603645a360c529eb998b35afec17d7cd066xxxxxxxx
```Please consult [Threema's documentation](https://gateway.threema.ch/en/developer/api)
how to create a gateway Threema ID.## API Usage Guide
### Setup
To use the gateway API client you need a gateway Threema ID and the
corresponding secret which was issued by the gateway admin interface:```java
ThreemaId from = ThreemaId.of("*YOURGWY"); // Insert your ID here
String secret = // e.g. "JSH5y9DfvOROm2Iw", retrieve this from a secure location
```All requests are send through a `Gateway` instance:
```java
Gateway gw = new Gateway(from, secret);
```If you want to send end-to-end encrypted messages (which is recommended)
you need your private 32 byte Threema key. The hexadecimal string
representation has 64 characters. Make sure you store this key securely
and do not make it available to others:```java
String myPrivateKeyStr = // retrieve this from a secure location
PrivateKey myPrivateKey = KeyEncoder.decodePrivateKey(myPrivateKeyStr);
```### Lookups
Sending a Threema message requires you to know the eight character
long Threema ID of the receiver. Users may choose to register their
telephone number or email address with their account which can then
be queried to lookup their Threema ID. Note that we do not disclose
the actual data but only send hash values:```java
ThreemaId receiverId = gw.getIdByPhoneNumber(Hash.ofPhone("+41791234567"));
System.out.println(receiverId);
```Or by Email address:
```java
receiverId = gw.getIdByEmailAddress(Hash.ofEmail("[email protected]"));
System.out.println(receiverId);
```Depending on the client the receiver might be able to process certain
message types only. You can check the capabilities of a given Threema
ID:```java
System.out.println(gw.getCapabilities(receiverId));
```### Encrypted Text Messages
To send a encrypted message we need the public key of the receiver
which can be obtained via the gateway API. For better information
security you should consider obtaining the public key physically
from the receivers device e.g. from the QR code.```java
PublicKey receiverPublicKey = gw.getPublicKey(receiverId);
```To ensure end-to-end encryption you create and encrypt the message
locally before you send it to the gateway:```java
String text = String.format("Secret message at %s.", Instant.now());PlainMessage msg = new PlainMessage.Text(text);
EncryptedMessage encrypted = msg.encrypt(myPrivateKey, receiverPublicKey);
MessageId messageId = gw.sendMessage(receiverId, encrypted);System.out.println(messageId);
```### Encrypted Image Messages
Sending images requires two steps. First we uploading the image as a
encrypted blob. Similarly as for the actual message the encryption
key for the blob is calculated from our private key and the receivers
public key.```java
byte[] image = Files.readAllBytes(Path.of("src/test/resources/image.jpg"));Blob blob = Blob.newImage(myPrivateKey, receiverPublicKey);
UploadedBlob uploadedBlob = gw.enrcryptAndUploadBlob(blob, image);
```A reference to the uploaded blob needs then to be used in the image message:
```java
PlainMessage imgMsg = new PlainMessage.Image(uploadedBlob);
EncryptedMessage encrypted = imgMsg.encrypt(myPrivateKey, receiverPublicKey);
gw.sendMessage(receiverId, encrypted);
```We can also download and decrypt our image blob again:
```java
byte[] downloadedImage = gw.downloadAndDecryptBlob(uploadedBlob);
Files.write(Path.of("target/download.jpg"), downloadedImage);
```### Encrypted File Messages
We can encrypt and send arbitrary files. Files are encrypted with a
random key which is then transmitted with the corresponding message.
An optional preview image can be added which must be encrypted with
the same key than the file:```java
byte[] file = Files.readAllBytes(Path.of("src/test/resources/document.pdf"));
UploadedBlob uploadedFileBlob = gw.enrcryptAndUploadBlob(Blob.newFile(), file);byte[] thumbnail = Files.readAllBytes(Path.of("src/test/resources/thumbnail.png"));
Blob thumbnailBlob = uploadedFileBlob.thumbnail();
UploadedBlob uploadedThumbnailBlob = gw.enrcryptAndUploadBlob(thumbnailBlob, thumbnail);
```Construction a file message requires a bit of meta data like the MIME
type of the file.```java
PlainMessage.File fileMsg = new PlainMessage.File(uploadedFileBlob, "application/pdf", RenderingType.DEFAULT);
fileMsg.setThumbnail(uploadedThumbnailBlob);
fileMsg.setFileName("document.pdf");EncryptedMessage encrypted = fileMsg.encrypt(myPrivateKey, receiverPublicKey);
gw.sendMessage(receiverId, encrypted);
```### Simple, Unencrypted Messages
With a *basic mode* gateway ID you can directly send a plain text
message to a given Threema ID without local encryption. The key pair
is managed for you on the gateway server. Please rather consider
using end-to-end encryption as described above.```java
gw.sendSimpleMessage(ThreemaId.of("ABCDEFGH"), "Not so secret message.");
```Alternatively you can also use a international telephone number or a
email address to send a message to if the users has registered them
with Threema. Note that the telephone number or the email address is
disclosed to the Threema gateway.```java
gw.sendSimpleMessageToPhoneNumber("41791234567", "Not so secret message.");
gw.sendSimpleMessageToEmailAddress("[email protected]", "Not so secret message.");
```### Account Information
Threema charges you for messages and blob uploads via the gateway.
You can query the remaining credits via API:```java
System.out.println("Remaining credits: " + gw.getRemainingCredits());
```### Threema QR Code
To establich trust with your users you can create a QR code with your
Threema ID and your public key. When the user scans that QR code your
gateway ID will show "green" in their contact list. The `qrcode()`
method creates the text content which need to be converted to a QR
graphic with a library of your choice (e.g.
[zxing](https://github.com/zxing/zxing)).```java
PublicKey publicKey = KeyEncoder.getPublicKey(privateKey);
String qrtext = KeyEncoder.qrcode(threemaid, publicKey);
System.out.println(qrtext);
```### Callback Handling
You can configure your own HTTP server to receive messages from the
Threema gateway. The corresponding endpoint must be visible from the
public internet of course. The payload can be decoded with the
`GatewayCallback` class:```java
byte[] body = // unprocessed body received from the HTTP server of your choiceGatewayCallback callback = new GatewayCallback(body, secret);
PublicKey publicKey = gw.getPublicKey(callback.getFrom());
PlainMessage message = callback.getMessage().decrypt(publicKey, myPrivateKey);System.out.println(message);
```## Security Disclaimer
This project has been implemented for personal use only. There was no
independent security audit. Please perform your own security audit before using
this software to send sensitive content!Also make sure you never disclose a private key of a Threema ID. The private
key will allow to send messages in your name and decode all content that has
been sent to you.## License
This code is provided "as is" under the [MIT License](LICENSE.md), without warranty of any kind.
## Trademarks
The [Threema Messenger](https://threema.ch/) and the [Messaging Gateway](https://gateway.threema.ch/)
are products of Threema GmbH, Switzerland. This project has no affiliation to
Threema GmbH. Please have a look at their [website](https://threema.ch/) and
consider using their products for secure end-to-end encrypted communication.