commit | 256d2bf0afb202c7f7c46316fd7d2f0ff9a93736 | [log] [tgz] |
---|---|---|
author | Jon Wayne Parrott <jonwayne@google.com> | Tue Dec 13 16:12:02 2016 -0800 |
committer | GitHub <noreply@github.com> | Tue Dec 13 16:12:02 2016 -0800 |
tree | 45c9f7aab13e5de194abfbf14439ff6ed8596f7c | |
parent | fc169298f60008636dd66e23d96fc21a0764dde9 [diff] [blame] |
Add app_engine.Signer (#97)
diff --git a/google/auth/crypt.py b/google/auth/crypt.py index 8d5ac7c..618afe5 100644 --- a/google/auth/crypt.py +++ b/google/auth/crypt.py
@@ -186,7 +186,7 @@ message (Union[str, bytes]): The message to be signed. Returns: - bytes: The signature of the message for the given key. + bytes: The signature of the message. """ message = _helpers.to_bytes(message) return rsa.pkcs1.sign(message, self._key, 'SHA-256')