vote up 1 vote down star

Question: is there a better way to do that?

VB.Net

Function GuidToBase64(ByVal guid As Guid) As String
    Return Convert.ToBase64String(guid.ToByteArray).Replace("/", "-").Replace("+", "_").Replace("=", "")
End Function

Function Base64ToGuid(ByVal base64 As String) As Guid
    Dim guid As Guid
    base64 = base64.Replace("-", "/").Replace("_", "+") & "=="

    Try
        guid = New Guid(Convert.FromBase64String(base64))
    Catch ex As Exception
        Throw New Exception("Bad Base64 conversion to GUID", ex)
    End Try

    Return guid
End Function

C#

public string GuidToBase64(Guid guid)
{
    return Convert.ToBase64String(guid.ToByteArray).Replace("/", "-").Replace("+", "_").Replace("=", "");
}

public Guid Base64ToGuid(string base64)
{
   Guid guid = default(Guid);
   base64 = base64.Replace("-", "/").Replace("_", "+") + "==";

   try {
       guid = new Guid(Convert.FromBase64String(base64));
   }
   catch (Exception ex) {
       throw new Exception("Bad Base64 conversion to GUID", ex);
   }

   return guid;
}
flag

Any special reason of removing standard special characters of Base64 encoding? – Hemant Jun 23 at 12:56
Is there a particular reason you need to encode it? None of the characters in a GUID need encoding for URLs or attributes. – blowdart Jun 23 at 12:56
@Hemant, because for URL, + and / and = doesn't work well in a GET, @blowdart, to make the url smaller – Fredou Jun 23 at 12:59
1  
@Charlie: Base64 encoded string is smaller than hex encoding which is default formatting when using .ToString (). Offcourse no-one would like to transmit raw (non printable bytes) directly. – Hemant Jun 23 at 13:06
1  
@Charlie how "37945704-cf86-4b2e-a4b5-0db0204902c8" is bigger than "BFeUN4bPLkuktQ2wIEkCyA" – Fredou Jun 23 at 13:07
show 2 more comments

2 Answers

vote up 1 vote down check

I understand that the reason you are clipping == in the end is that because you can be certain that for GUID (of 16 bytes), encoded string will always end with ==. So 2 characters can be saved in every conversion.

Beside the point @Skurmedal already mentioned (should throw an exception in case of invalid string as input), I think the code you posted is just good enough.

link|flag
Didn't think of that first thing, a clever space saver when you think about it :) – Skurmedel Jun 23 at 13:05
what would be best, dealing with an exception or querying the database anyway with something that doesn't exist? would it add more code in the end since I check if there is at least one row in the result? – Fredou Jun 23 at 13:11
The point is only about where you want to put that check. My experience is that low level library routines should be as transparent as possible. Offcourse here you are the best judge of where the error checking code should go because you know your product and where this library/code stands. It was just a point for consideration. – Hemant Jun 23 at 13:18
Well if you are dealing with an exception at least you know something has gone wrong. It might not matter now, but in the future maybe. I don't know your program good enoug :) I think querying the database for stuff that you (in theory) know doesn't exist is the least favourable solution. – Skurmedel Jun 23 at 13:19
I think I agree with you guys, about throwing an exception, it make more sense – Fredou Jun 23 at 13:33
vote up 0 vote down

If your method cannot convert the Base64 passed to it to a GUID, shouldn't you throw an exception? The data passed to the method is clearly erronous.

link|flag
Nevermind, I missunderstood the original code. – Skurmedel Jun 23 at 13:06
@Skumedel, Ok :-) – Fredou Jun 23 at 13:10
I think I agree with you guys, about throwing an exception, it make more sense – Fredou Jun 23 at 13:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.