diff mbox

Allow URL-safe base64 cephx keys to be decoded.

Message ID 1341494994-32002-1-git-send-email-wido@widodh.nl (mailing list archive)
State New, archived
Headers show

Commit Message

Wido den Hollander July 5, 2012, 1:29 p.m. UTC
In these cases + and / are replaced by - and _ to prevent problems when using
the base64 strings in URLs.

Signed-off-by: Wido den Hollander <wido@widodh.nl>
---
 src/common/armor.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/src/common/armor.c b/src/common/armor.c
index d1d5664..e4b8b86 100644
--- a/src/common/armor.c
+++ b/src/common/armor.c
@@ -24,9 +24,9 @@  static int decode_bits(char c)
 		return c - 'a' + 26;
 	if (c >= '0' && c <= '9')
 		return c - '0' + 52;
-	if (c == '+')
+	if (c == '+' || c == '-')
 		return 62;
-	if (c == '/')
+	if (c == '/' || c == '_')
 		return 63;
 	if (c == '=')
 		return 0; /* just non-negative, please */