Re: [protobuf] Re: Proto3 Storing UUID

2021-08-16 Thread 'Gargi Gupta' via Protocol Buffers
Can you elaborate on the kinds of DOS or fuzzing attacks? Thanks On Tuesday, January 12, 2021 at 4:01:18 PM UTC-6 Tom Hintz wrote: > Neither string or byte array are good solutions from a security > perspective because they can be abused in certain kinds of DOS or fuzzing > attacks. I like

Re: [protobuf] Re: Proto3 Storing UUID

2021-01-11 Thread Pheubel
I saw a pretty good suggestion in this issue thread: Provide support for UUID type (a.k.a. GUID) #2224 @*gmabey *suggested to make use of the layout presented in RFC4122 section 4.1.2, @*billpoole-mi

Re: [protobuf] Re: Proto3 Storing UUID

2017-01-11 Thread 'Bo Yang' via Protocol Buffers
I recommend bytes field. If you use string, it won't accept non-utf8 character. On Wed, Jan 11, 2017 at 2:35 PM wrote: > Late answer, but I would have recommended string. Keeps it human readable > and also, I suppose, not have to be concerned with endian order. > > On