All Projects → indutny → git-secure-tag

indutny / git-secure-tag

Licence: other
Secure git tag signing

Programming Languages

javascript
184084 projects - #8 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to git-secure-tag

Jwtcat
A CPU-based JSON Web Token (JWT) cracker and - to some extent - scanner.
Stars: ✭ 181 (+311.36%)
Mutual labels:  signature
GetApk
Show app or apk detail, and export apk file of installed app to sdcard
Stars: ✭ 42 (-4.55%)
Mutual labels:  signature
leptin
🔗 Leptin is a PoW blockchain completely built in Nodejs.
Stars: ✭ 57 (+29.55%)
Mutual labels:  signature
Creepycodecollection
A Nonsense Collection of Disgusting Codes
Stars: ✭ 2,206 (+4913.64%)
Mutual labels:  signature
Expo Pixi
Tools for using pixi.js in Expo
Stars: ✭ 253 (+475%)
Mutual labels:  signature
iOS-Signature-Capture
iOS-Signature-Capture is helps to capture the user signature with name and signed date in iOS and supports both Objective-c and Swift languages.
Stars: ✭ 50 (+13.64%)
Mutual labels:  signature
Loki
Loki - Simple IOC and Incident Response Scanner
Stars: ✭ 2,217 (+4938.64%)
Mutual labels:  signature
SSL-TLS-ECDSA-timing-attack
Timing Attack on TLS' ECDSA signature
Stars: ✭ 41 (-6.82%)
Mutual labels:  signature
react-signature-canvas
A React wrapper component around signature_pad (in < 150 LoC). Unopinionated and heavily updated fork of react-signature-pad
Stars: ✭ 420 (+854.55%)
Mutual labels:  signature
pdf-sign-check
A java / spring boot application to help you sign and check signed pdf documents
Stars: ✭ 81 (+84.09%)
Mutual labels:  signature
Auth Jwt
A demo to learn JWT by reverse engineering
Stars: ✭ 208 (+372.73%)
Mutual labels:  signature
Jsrsasign
The 'jsrsasign' (RSA-Sign JavaScript Library) is an opensource free cryptography library supporting RSA/RSAPSS/ECDSA/DSA signing/validation, ASN.1, PKCS#1/5/8 private/public key, X.509 certificate, CRL, OCSP, CMS SignedData, TimeStamp, CAdES JSON Web Signature/Token in pure JavaScript.
Stars: ✭ 2,760 (+6172.73%)
Mutual labels:  signature
go-dkim
A Go library to create and verify DKIM signatures (migrated)
Stars: ✭ 38 (-13.64%)
Mutual labels:  signature
Easyrsa
Simple and Secure Wrapper for phpseclib
Stars: ✭ 183 (+315.91%)
Mutual labels:  signature
signature
HMAC and RSA signature for Laravel and Lumen
Stars: ✭ 26 (-40.91%)
Mutual labels:  signature
React Native Signature Canvas
✒️ React Native Signature Component based WebView Canvas for Android && IOS && expo
Stars: ✭ 169 (+284.09%)
Mutual labels:  signature
mitome.in
Explore OpenPGP and other cryptography as an alternative for seals (mitome-in)
Stars: ✭ 30 (-31.82%)
Mutual labels:  signature
memory signature
A small wrapper class providing an unified interface to search for various memory signatures
Stars: ✭ 69 (+56.82%)
Mutual labels:  signature
open-attestation
Meta framework for providing digital provenance and integrity to documents.
Stars: ✭ 39 (-11.36%)
Mutual labels:  signature
eosdart ecc
Elliptic curve cryptography functions in Dart. Private Key, Public Key, Signature, AES, Encryption, Decryption
Stars: ✭ 25 (-43.18%)
Mutual labels:  signature

git-secure-tag

NPM version Build Status

Why?

git uses SHA-1 hashes when signing tag. SHA-1 is generally deprecated and is not a collision-safe anymore (though, collisions are yet to come pre-image attack is yet to come).

How?

git-secure-tag runs cat-file recursively for each entry (sorted alphabetically), enters submodules (if present), and hashes file/directory names, file contents, and submodules (recursively again) into a resulting Git-EVTag-v0-SHA512: ... SHA512 digest.

Installation

npm install -g git-secure-tag

Usage

# Sign
git secure-tag v1.2.7 -m "My tag annotation"

# Verify
git secure-tag -v v1.2.7

Original evtag implementation

Largely inspired by:

https://github.com/cgwalters/git-evtag

LICENSE

This software is licensed under the MIT License.

Copyright Fedor Indutny, 2016.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].