// Copyright 2024 Google LLC // // 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 // // https://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. //! Global constants /// The maximum size in bytes of a message buffer. pub const MAX_MESSAGE_SIZE: usize = 8192; /// The size in bytes of a cryptographic hash. pub const HASH_SIZE: usize = 64; /// The size in bytes of a private session key agreement key. pub const DH_PRIVATE_KEY_SIZE: usize = 32; /// The size in bytes of a public session key agreement key. pub const DH_PUBLIC_KEY_SIZE: usize = 32; /// The size in bytes of an encryption key, currently this is the same for /// session and sealing encryption. pub const ENCRYPTION_KEY_SIZE: usize = 32; /// The size in bytes of a serialized public key for signing. pub const SIGNING_PUBLIC_KEY_SIZE: usize = 32; /// The size in bytes of a serialized private key for signing. pub const SIGNING_PRIVATE_KEY_SIZE: usize = 32; /// The size in bytes of a serialized public key for sealing. pub const SEALING_PUBLIC_KEY_SIZE: usize = 32; /// The size in bytes of a serialized private key for sealing. pub const SEALING_PRIVATE_KEY_SIZE: usize = 32; /// The maximum size in bytes of a signature produced by the Sign command. pub const MAX_SIGNATURE_SIZE: usize = 64; /// The maximum size in bytes of a session handshake message. pub const MAX_HANDSHAKE_MESSAGE_SIZE: usize = 64; /// The maximum size in bytes of a session handshake payload. pub const MAX_HANDSHAKE_PAYLOAD_SIZE: usize = 8;