summary refs log tree commit diff
path: root/synapse/handlers/identity.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-08-30 12:01:24 +0100
committerRichard van der Hoff <richard@matrix.org>2019-08-30 12:01:24 +0100
commitb272e7345f1ea48eef35e0dd34db0b67a33ed96d (patch)
tree9a9302aed93748357618015ea5bed13eb9bf0d12 /synapse/handlers/identity.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentRevert "Use the v2 lookup API for 3PID invites (#5897)" (#5937) (diff)
downloadsynapse-b272e7345f1ea48eef35e0dd34db0b67a33ed96d.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/handlers/identity.py')
-rw-r--r--synapse/handlers/identity.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/synapse/handlers/identity.py b/synapse/handlers/identity.py

index 97daca5fee..d199521b58 100644 --- a/synapse/handlers/identity.py +++ b/synapse/handlers/identity.py
@@ -282,16 +282,3 @@ class IdentityHandler(BaseHandler): except HttpResponseException as e: logger.info("Proxied requestToken failed: %r", e) raise e.to_synapse_error() - - -class LookupAlgorithm: - """ - Supported hashing algorithms when performing a 3PID lookup. - - SHA256 - Hashing an (address, medium, pepper) combo with sha256, then url-safe base64 - encoding - NONE - Not performing any hashing. Simply sending an (address, medium) combo in plaintext - """ - - SHA256 = "sha256" - NONE = "none"