All Projects → m7shapan → uuid

m7shapan / uuid

Licence: MIT license
Go package for UUIDs based on RFC 4122 Time-Based UUID

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to uuid

Id Generator
生成带校验码的卡号、19位的Long ID、不大于22位的短UUID、短卡号、激活码、数字加密、付款码。分布式、基于内存、安全可靠、性能高。
Stars: ✭ 180 (+373.68%)
Mutual labels:  uuid
Ulid
Universally Unique Lexicographically Sortable Identifier implementation for Ruby
Stars: ✭ 253 (+565.79%)
Mutual labels:  uuid
ulid
Universally Unique Lexicographically Sortable Identifier (ULID) in Crystal
Stars: ✭ 28 (-26.32%)
Mutual labels:  uuid
Nanoid
A tiny, secure, URL-friendly, unique string ID generator for Rust
Stars: ✭ 188 (+394.74%)
Mutual labels:  uuid
Ksuid
K-Sortable Globally Unique IDs
Stars: ✭ 3,202 (+8326.32%)
Mutual labels:  uuid
yii2-uuid
UUID Helper and validator for Yii 2
Stars: ✭ 33 (-13.16%)
Mutual labels:  uuid
Lua Resty Jit Uuid
Fast and dependency-free UUID library for LuaJIT/ngx_lua
Stars: ✭ 169 (+344.74%)
Mutual labels:  uuid
fuse-device
Use the basic Device functions such as UUID and current localization from Fuse
Stars: ✭ 13 (-65.79%)
Mutual labels:  uuid
Uuid
Go package for UUIDs based on RFC 4122 and DCE 1.1: Authentication and Security Services.
Stars: ✭ 3,237 (+8418.42%)
Mutual labels:  uuid
friendly-id
Java Friendly Id for UUID
Stars: ✭ 173 (+355.26%)
Mutual labels:  uuid
Uuid
Erlang Native UUID Generation
Stars: ✭ 188 (+394.74%)
Mutual labels:  uuid
Ulid
Universally Unique Lexicographically Sortable Identifier (ULID) in Python 3
Stars: ✭ 216 (+468.42%)
Mutual labels:  uuid
python-libuuid
Faster UUID generation using libuuid
Stars: ✭ 36 (-5.26%)
Mutual labels:  uuid
Msgphp
Reusable domain layers. Shipped with industry standard infrastructure.
Stars: ✭ 182 (+378.95%)
Mutual labels:  uuid
sno
Compact, sortable and fast unique IDs with embedded metadata.
Stars: ✭ 77 (+102.63%)
Mutual labels:  uuid
Uid Promise
Creates a cryptographically strong UID
Stars: ✭ 179 (+371.05%)
Mutual labels:  uuid
UUIDNext
A fast and modern .NET library to generate UUID/GUID that are either sequential and database friendly (versions 7), name based (versions 5) or random (version 4).
Stars: ✭ 84 (+121.05%)
Mutual labels:  uuid
SierraChartZorroPlugin
A Zorro broker API plugin for Sierra Chart, written in Win32 C++.
Stars: ✭ 22 (-42.11%)
Mutual labels:  uuid
uuidgen-el
UUID generation implemented in elisp.
Stars: ✭ 44 (+15.79%)
Mutual labels:  uuid
python-ulid
ULID implementation for Python
Stars: ✭ 177 (+365.79%)
Mutual labels:  uuid

uuid

The uuid package generates UUIDs based on RFC 4122: Time-Based UUID

Install

go get -u github.com/m7shapan/uuid

How to use

package main

import (
	"fmt"

	"github.com/m7shapan/uuid"
)

func main() {
	fmt.Println(uuid.NewUUID()) // 2bf08894-47a3978-bbdd8c85-70d16847
}
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].