* Functions for representing the memory region as various data types. */ * Bytes returns a byte slice referencing the protected region of memory. */
()
| 366 | Bytes returns a byte slice referencing the protected region of memory. |
| 367 | */ |
| 368 | func (b *LockedBuffer) Bytes() []byte { |
| 369 | return b.Buffer.Data() |
| 370 | } |
| 371 | |
| 372 | /* |
| 373 | Reader returns a Reader object referencing the protected region of memory. |