ITextEncoding Interface
Namespace: Yubico.Core.Buffers Assembly: Yubico.Core.dllInterface for abstracting different means of encoding and decoding byte collections.
C#
public interface ITextEncoding
Methods
Name | Description |
---|---|
Decode(ReadOnlySpan<Char>, Span<Byte>) | Decode the string into |
Decode(String) | Decode the string into a byte array. |
Encode(ReadOnlySpan<Byte>) | Encode the byte collection into a string representation. |
Encode(ReadOnlySpan<Byte>, Span<Char>) | Encode the byte collection into |