
com.jsuereth.pgp.cli.ListKeys.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bleep-plugin-pgp_2.13 Show documentation
Show all versions of bleep-plugin-pgp_2.13 Show documentation
A bleeping fast scala build tool!
package bleep.plugin.pgp
package cli
case class ListKeys() extends PgpCommand {
def run(ctx: PgpCommandContext): Unit = {
import Display._
ctx output {
printFileHeader(ctx.publicKeyRingFile) +
(ctx.publicKeyRing.keyRings map printRing mkString "\n")
}
}
override def isReadOnly = true
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy