blob: c36c851628dd99e993686aacc21da8a78e6d2df7 [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:ffi';
/// digest algorithm.
class EVP_MD extends Struct<EVP_MD> {}
/// digest context.
class EVP_MD_CTX extends Struct<EVP_MD_CTX> {}
/// Type for `void*` used to represent opaque data.
class Data extends Struct<Data> {
static Data fromUint8Pointer(Pointer<Uint8> p) => p.cast<Data>().load();
Pointer<Uint8> asUint8Pointer() => this.addressOf.cast();
}
/// Type for `uint8_t*` used to represent byte data.
class Bytes extends Struct<Bytes> {
static Data fromUint8Pointer(Pointer<Uint8> p) => p.cast<Data>().load();
Pointer<Uint8> asUint8Pointer() => this.addressOf.cast();
}