Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what are *.asc files in MVNrepository

Tags:

maven

For every file that is in a repository, a .asc file is available in MVNrepository. What are these files used for?

For example, Google's guava (http://central.maven.org/maven2/com/google/guava/guava/19.0/) has mainly three jar files and one pom file, with an asc file attached to each of them.

like image 504
rakesh kashyap Avatar asked Aug 30 '16 03:08

rakesh kashyap


People also ask

What are .ASC files?

asc files is for encryption and securecommunication. In this case, the file will contain text consisting of ASCII characters (American Standard Code for Information Interchange). These . asc files are used to communicate securely via email or other text-based media.

How do I open a .ASC file?

ASC files were created by Adobe System and are also known as ASCII files. These files can be opened practically by any text editor and executed with the proper scripting engine. A good example of this is the VB script when clicked will automatically open and perform what it is commanded to do.

What is GPG ASC file?

Armored ASCII (whose filename suffix is . asc) is the most portable data format gpg uses, in contrast to gpg's default binary format (which uses the filename suffix . gpg). Unlike this binary format, Armored ASCII can be copied and pasted, into e-mail for example.

How do I open an ASC file in Excel on a Mac?

From the File menu in Excel, select Open. Select the folder where you have saved the ASCII file, then click Open. In the Files of type drop-down list, select All Files.


1 Answers

Editor's Note: This answer has been copied from a comment.

Those are PGP signature files that can be used to authenticate the validity of a particular artifact.

like image 131
JasonMArcher Avatar answered Nov 10 '22 10:11

JasonMArcher