fn encodedLen(dot_notation: []const u8) usize
fn encodedLen(dot_notation: []const u8) usize { var buf: [256]u8 = undefined; const oid = fromDot(dot_notation, &buf) catch unreachable; return oid.encoded.len; }