How to encoding the following with PER:
Msg := SEQUENCE {
A Atype,
B Btype option,
....
}
Atype := sequence (1..100) of integer ( ... )
Btype := sequence (1..100) of integer (...)
I use the basic aligned variant format of PER. so the result is :
0 0 xxxxxx
( x is padding zero bits )
am I right?