| 193 | } |
| 194 | |
| 195 | static void |
| 196 | crypt_op_from_32(const struct crypt_op32 *from, struct crypt_op *to) |
| 197 | { |
| 198 | |
| 199 | CP(*from, *to, ses); |
| 200 | CP(*from, *to, op); |
| 201 | CP(*from, *to, flags); |
| 202 | CP(*from, *to, len); |
| 203 | PTRIN_CP(*from, *to, src); |
| 204 | PTRIN_CP(*from, *to, dst); |
| 205 | PTRIN_CP(*from, *to, mac); |
| 206 | PTRIN_CP(*from, *to, iv); |
| 207 | } |
| 208 | |
| 209 | static void |
| 210 | crypt_op_to_32(const struct crypt_op *from, struct crypt_op32 *to) |