mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-25 16:42:07 +01:00
Kotlin conversion: Armor
This commit is contained in:
parent
08ddc5d8a5
commit
4a123a1980
2 changed files with 46 additions and 53 deletions
|
@ -1,53 +0,0 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
package sop.operation;
|
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
|
|
||||||
import sop.Ready;
|
|
||||||
import sop.enums.ArmorLabel;
|
|
||||||
import sop.exception.SOPGPException;
|
|
||||||
|
|
||||||
public interface Armor {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Overrides automatic detection of label.
|
|
||||||
*
|
|
||||||
* @param label armor label
|
|
||||||
* @return builder instance
|
|
||||||
*/
|
|
||||||
Armor label(ArmorLabel label)
|
|
||||||
throws SOPGPException.UnsupportedOption;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Armor the provided data.
|
|
||||||
*
|
|
||||||
* @param data input stream of unarmored OpenPGP data
|
|
||||||
* @return armored data
|
|
||||||
*
|
|
||||||
* @throws sop.exception.SOPGPException.BadData if the data appears to be OpenPGP packets, but those are broken
|
|
||||||
* @throws IOException in case of an IO error
|
|
||||||
*/
|
|
||||||
Ready data(InputStream data)
|
|
||||||
throws SOPGPException.BadData,
|
|
||||||
IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Armor the provided data.
|
|
||||||
*
|
|
||||||
* @param data unarmored OpenPGP data
|
|
||||||
* @return armored data
|
|
||||||
*
|
|
||||||
* @throws sop.exception.SOPGPException.BadData if the data appears to be OpenPGP packets, but those are broken
|
|
||||||
* @throws IOException in case of an IO error
|
|
||||||
*/
|
|
||||||
default Ready data(byte[] data)
|
|
||||||
throws SOPGPException.BadData,
|
|
||||||
IOException {
|
|
||||||
return data(new ByteArrayInputStream(data));
|
|
||||||
}
|
|
||||||
}
|
|
46
sop-java/src/main/kotlin/sop/operation/Armor.kt
Normal file
46
sop-java/src/main/kotlin/sop/operation/Armor.kt
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
package sop.operation
|
||||||
|
|
||||||
|
import java.io.IOException
|
||||||
|
import java.io.InputStream
|
||||||
|
import sop.Ready
|
||||||
|
import sop.enums.ArmorLabel
|
||||||
|
import sop.exception.SOPGPException.BadData
|
||||||
|
import sop.exception.SOPGPException.UnsupportedOption
|
||||||
|
|
||||||
|
interface Armor {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Overrides automatic detection of label.
|
||||||
|
*
|
||||||
|
* @param label armor label
|
||||||
|
* @return builder instance
|
||||||
|
*/
|
||||||
|
@Deprecated("Use of armor labels is deprecated and will be removed in a future release.")
|
||||||
|
@Throws(UnsupportedOption::class)
|
||||||
|
fun label(label: ArmorLabel): Armor
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Armor the provided data.
|
||||||
|
*
|
||||||
|
* @param data input stream of unarmored OpenPGP data
|
||||||
|
* @return armored data
|
||||||
|
* @throws BadData if the data appears to be OpenPGP packets, but those are broken
|
||||||
|
* @throws IOException in case of an IO error
|
||||||
|
*/
|
||||||
|
@Throws(BadData::class, IOException::class) fun data(data: InputStream): Ready
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Armor the provided data.
|
||||||
|
*
|
||||||
|
* @param data unarmored OpenPGP data
|
||||||
|
* @return armored data
|
||||||
|
* @throws BadData if the data appears to be OpenPGP packets, but those are broken
|
||||||
|
* @throws IOException in case of an IO error
|
||||||
|
*/
|
||||||
|
@Throws(BadData::class, IOException::class)
|
||||||
|
fun data(data: ByteArray): Ready = data(data.inputStream())
|
||||||
|
}
|
Loading…
Reference in a new issue