pub fn rotate_bytes_right(bytes: &[u8], n: usize) -> Vec<u8> ⓘ
Rotate bytes right by n positions. Wraps around: [1,2,3,4] rotated right by 1 = [4,1,2,3]