/** * This implementations is derived from: * https://github.com/google/closure-library/blob/8598d87242af59aac233270742c8984e2b2bdbe0/closure/goog/crypt/crypt.js * * Copyright 2008 The Closure Library Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS-IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Interpret a string as UTF-8 and encode it as a Uint8Array. * @param utf8 - the string to encode */ export declare const utf8ToBin: (utf8: string) => Uint8Array; /** * Decode a Uint8Array as a UTF-8 string. * @param bytes - the Uint8Array to decode */ export declare const binToUtf8: (bytes: Uint8Array) => string; //# sourceMappingURL=utf8.d.ts.map