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 |