https://github.com/agprojects/python3-otr
Off-The-Record Messaging protocol implementation for Python
https://github.com/agprojects/python3-otr
Last synced: 3 months ago
JSON representation
Off-The-Record Messaging protocol implementation for Python
- Host: GitHub
- URL: https://github.com/agprojects/python3-otr
- Owner: AGProjects
- License: other
- Created: 2020-08-04T07:56:10.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-19T14:50:26.000Z (4 months ago)
- Last Synced: 2025-04-15T06:49:50.577Z (3 months ago)
- Language: Python
- Size: 164 KB
- Stars: 14
- Watchers: 7
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
README
This package implements the Off-The-Record Messaging protocol in pure python.
Off-The-Record Messaging (OTR) is a cryptographic protocol that provides
encryption for instant messaging conversations. OTR uses a combination of
AES symmetric-key algorithm with 128 bits key length, the Diffie-Hellman
key exchange with 1536 bits group size, and the SHA-1/SHA-256 hash functions.Features of the OTR protocol:
1. End-to-end encryption: No one else can read your messages.
2. Authentication: The correspondent's identity can be verified.
3. Deniability: The messages you send do not have digital signatures that can
be checked by a third party. Anyone can forge messages after a conversation
to make them look like they came from you, however during the conversation
your correspondent is assured that the messages he sees coming from you are
authentic and unmodified.
4. Perfect forward secrecy: If you lose control of your private keys, you are
assured that no previous conversation is compromised.This package implements the version 2 and 3 of the OTR protocol.
For more details see https://otr.cypherpunks.ca/