/** * Re-export OpenPGPSlot from parent package */ export { OpenPGPSlot } from '@l8d/hardhat-yubikey/dist/src/internal/openpgp-apdu.js'; /** * All available OpenPGP slots for slot discovery */ export const ALL_SLOTS = [ 0x00, // SIGNATURE 0x01, // DECRYPTION 0x02, // AUTHENTICATION ] as const; /** * Default PIN for YubiKey OpenPGP applet * Note: Users should change this after initial setup */ export const DEFAULT_OPENPGP_PIN = "123456"; /** * Default timeout for YubiKey signing operations (30 seconds) */ export const DEFAULT_SIGNING_TIMEOUT = 30000;