Merge pull request #13 from keeshux/signal-digest-embedding

Signal digest embedding
This commit is contained in:
Davide De Rosa 2018-09-04 15:58:55 +02:00 committed by GitHub
commit bae51c735e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -55,6 +55,11 @@ extension SessionProxy {
/// AES encryption with 256-bit key size and GCM.
case aes256gcm = "AES-256-GCM"
/// Digest should be ignored when this is `true`.
public var embedsDigest: Bool {
return rawValue.hasSuffix("-GCM")
}
}
/// The available message digest algorithms.