|
| 1 | +// Copyright 2020 ONIXLabs |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +namespace OnixLabs.Security.Cryptography; |
| 16 | + |
| 17 | +/// <summary> |
| 18 | +/// Represents a named cryptographic private key. |
| 19 | +/// </summary> |
| 20 | +public readonly partial record struct NamedPrivateKey : ICryptoPrimitive<NamedPrivateKey> |
| 21 | +{ |
| 22 | + private const string KeyAlgorithmNameNullOrWhiteSpace = "Key algorithm name must not be null or whitespace."; |
| 23 | + |
| 24 | + /// <summary> |
| 25 | + /// Initializes a new instance of the <see cref="NamedPrivateKey"/> struct. |
| 26 | + /// </summary> |
| 27 | + /// <param name="privateKey">The underlying private key value.</param> |
| 28 | + /// <param name="algorithmName">The name of the key algorithm that was used to produce the associated private key.</param> |
| 29 | + public NamedPrivateKey(PrivateKey privateKey, string algorithmName) |
| 30 | + { |
| 31 | + PrivateKey = privateKey; |
| 32 | + AlgorithmName = RequireNotNullOrWhiteSpace(algorithmName, KeyAlgorithmNameNullOrWhiteSpace); |
| 33 | + } |
| 34 | + |
| 35 | + /// <summary> |
| 36 | + /// Gets the underlying private key value. |
| 37 | + /// </summary> |
| 38 | + public PrivateKey PrivateKey { get; } |
| 39 | + |
| 40 | + /// <summary> |
| 41 | + /// Gets the name of the key algorithm that was used to produce the associated private key. |
| 42 | + /// </summary> |
| 43 | + public string AlgorithmName { get; } |
| 44 | +} |
0 commit comments