当前位置: 首页>>代码示例>>Golang>>正文


Golang SecureStorage.AddItem方法代码示例

本文整理汇总了Golang中ibm-security-innovation/libsecurity-go/storage.SecureStorage.AddItem方法的典型用法代码示例。如果您正苦于以下问题:Golang SecureStorage.AddItem方法的具体用法?Golang SecureStorage.AddItem怎么用?Golang SecureStorage.AddItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ibm-security-innovation/libsecurity-go/storage.SecureStorage的用法示例。


在下文中一共展示了SecureStorage.AddItem方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: addEntityToStorage

// Add the Entity's data to disk (in JSON format)
func (e *Entity) addEntityToStorage(prefix string, storage *ss.SecureStorage) error {
	if storage == nil {
		return fmt.Errorf("Error: can't add to storage, storage is nil")
	}
	val, _ := json.Marshal(e)
	return storage.AddItem(prefix, string(val))
}
开发者ID:rgw5267,项目名称:libsecurity-go,代码行数:8,代码来源:entity.go

示例2: addGroupToStorage

// Add the group's data to disk (in JSON format)
func (g *Group) addGroupToStorage(prefix string, storage *ss.SecureStorage) error {
	if storage == nil {
		return fmt.Errorf("Error: can't add group to storage, storage is nil")
	}
	val, _ := json.Marshal(g)
	return storage.AddItem(prefix, string(val))
}
开发者ID:rgw5267,项目名称:libsecurity-go,代码行数:8,代码来源:entity.go

示例3: AddToStorage

// Store User data info to the secure_storage
func (s Serializer) AddToStorage(prefix string, data interface{}, storage *ss.SecureStorage) error {
	d, ok := data.(*OtpUser)
	if ok == false {
		return fmt.Errorf("Error: Can't store the OTP property: its not in the right type")
	}
	if storage == nil {
		return fmt.Errorf("Error: can't add OTP property to storage, storage is nil")
	}
	value, _ := json.Marshal(d)
	err := storage.AddItem(prefix, string(value))
	if err != nil {
		return err
	}
	return nil
}
开发者ID:rgw5267,项目名称:libsecurity-go,代码行数:16,代码来源:otpUser.go

示例4: AddToStorage

// Add the AM property information to the secure_storage
func (s Serializer) AddToStorage(prefix string, data interface{}, storage *ss.SecureStorage) error {
	lock.Lock()
	defer lock.Unlock()

	d, ok := data.(*AmUserInfo)
	if ok == false {
		return fmt.Errorf("can't store the Account management property, it has an illegal type")
	}
	if storage == nil {
		return fmt.Errorf("can't add AM property to storage, storage is nil")
	}
	value, _ := json.Marshal(d)
	err := storage.AddItem(prefix, string(value))
	if err != nil {
		return err
	}
	return nil
}
开发者ID:postfix,项目名称:libsecurity-go,代码行数:19,代码来源:accountManagement.go

示例5: AddToStorage

// Store ACL data info in the secure_storage
func (s Serializer) AddToStorage(prefix string, data interface{}, storage *ss.SecureStorage) error {
	lock.Lock()
	defer lock.Unlock()

	d, ok := data.(*Acl)
	if ok == false {
		return fmt.Errorf("Error: Can't store the ACL property as it has an illegal type")
	}
	if storage == nil {
		return fmt.Errorf("Error: Can't add an ACL property to storage, storage is nil")
	}
	value, err := json.Marshal(d)
	err = storage.AddItem(prefix, string(value))
	if err != nil {
		return err
	}
	return nil
}
开发者ID:kopzhangwx,项目名称:libsecurity-go,代码行数:19,代码来源:acl.go


注:本文中的ibm-security-innovation/libsecurity-go/storage.SecureStorage.AddItem方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。